/* ============================================================
   ORBIT COFFEE CO. — Design System 2025
   Brand: #176650 (green) · #09281e (dark) · #f2ede7 (cream)
   Fonts: Stolz (brand) · Inter (fallback)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Stolz';
  src: local('Stolz Regular'), local('Stolz-Regular'), local('Stolz');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stolz';
  src: local('Stolz Medium'), local('Stolz-Medium'), local('Stolz');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stolz';
  src: local('Stolz Bold'), local('Stolz-Bold'), local('Stolz');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
  --green: #176650;
  --green-dark: #09281e;
  --green-mid: #1a7a60;
  --cream: #f2ede7;
  --cream-dark: #e8ddd5;
  --white: #ffffff;
  --black: #111111;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-light: rgba(255,255,255,0.65);

  --font-heading: 'Stolz', 'Avenir Next', 'Helvetica Neue', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Stolz', 'Avenir Next', 'Helvetica Neue', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 600ms var(--ease-out);

  --container-max: 1280px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --radius-full: 8px;

  --header-h: 80px;
  --shadow-sm: 0 2px 10px rgba(9,40,30,0.06);
  --shadow: 0 10px 34px rgba(9,40,30,0.10);
  --shadow-lg: 0 20px 60px rgba(9,40,30,0.16);
  --shadow-green: 0 12px 34px rgba(23,102,80,0.22);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--font-body); cursor: pointer; }

/* ===== Typography ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: 0;
}

.label-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 14px;
  border: 1.5px solid rgba(23,102,80,0.3);
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: rgba(23,102,80,0.05);
}
.label-tag--white {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

/* ===== Container ===== */
.oc {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .oc { padding: 0 20px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: currentColor;
}
.btn--outline:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn--white {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.btn--white:hover {
  background: var(--cream);
  color: var(--green-dark);
  transform: translateY(-1px);
}
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--sm { padding: 9px 20px; font-size: 13px; }

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.08), transparent 42%),
    radial-gradient(circle at 80% 28%, rgba(255,255,255,0.06), transparent 46%),
    linear-gradient(135deg, #0a2c22 0%, #0f3f31 55%, #185845 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s ease;
  overflow: hidden;
}
#preloader::before,
#preloader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.7;
}
#preloader::before {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -180px;
}
#preloader::after {
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -180px;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pl-main {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pl-scene {
  position: relative;
  width: min(430px, 78vw);
  height: min(320px, 58vw);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pl-gif {
  display: block;
  width: min(430px, 78vw);
  max-width: none;
  height: auto;
  mix-blend-mode: screen;
  transform: scale(1.08);
}

.pl-status {
  color: rgba(255,255,255,0.86);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.pl-bottom-logo {
  bottom: clamp(30px, 6vh, 58px);
  left: 50%;
  opacity: 0.94;
  position: absolute;
  transform: translateX(-50%);
  width: min(150px, 38vw);
  z-index: 1;
}

.pl-bottom-logo img {
  display: block;
  filter: brightness(0) invert(1);
  height: auto;
  width: 100%;
}

@keyframes pl-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Header ===== */
.site-header-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(9,40,30,0.08);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
.site-header-new.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 10px 30px rgba(9,40,30,0.08);
  border-bottom-color: rgba(9,40,30,0.06);
}
.site-header-new.is-transparent {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: rgba(9,40,30,0.08);
}
.header-inner {
  max-width: min(1540px, 100%);
  margin: 0 auto;
  padding: 0 64px;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.header-logo {
  justify-self: start;
}
.header-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: filter var(--transition);
}
/* Footer logo: invert to white on dark background */
.footer-brand__logo {
  filter: brightness(0) invert(1) !important;
}
.header-nav {
  justify-self: stretch;
  min-width: 0;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: flex-start;
  min-height: 56px;
  padding: 0 6px;
}
.header-nav a,
.header-nav__toggle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 0;
  line-height: 1;
}
.header-nav a:hover,
.header-nav__toggle:hover,
.header-nav__item.is-open .header-nav__toggle {
  color: var(--green);
}
.header-nav a.active {
  color: var(--green);
}
.header-nav__item {
  position: relative;
}
.header-nav__toggle i {
  font-size: 13px;
  transition: transform var(--transition-fast);
}
.header-nav__item.is-open .header-nav__toggle i {
  transform: rotate(180deg);
}
.header-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(9,40,30,0.08);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 24px 48px rgba(9,40,30,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}
.header-nav__item.is-open .header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.98);
  border-left: 1px solid rgba(9,40,30,0.08);
  border-top: 1px solid rgba(9,40,30,0.08);
  transform: rotate(45deg);
}
.header-dropdown a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  color: rgba(9,40,30,0.78);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.header-dropdown a:hover {
  background: rgba(23,102,80,0.08);
  color: var(--green);
  transform: translateX(2px);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.header-actions .btn {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
  min-height: 46px;
}
.header-actions .btn--white {
  background: #ffffff;
  border-color: rgba(23,102,80,0.24);
  color: var(--green-dark);
  box-shadow: 0 12px 22px rgba(23,102,80,0.08);
}
.header-actions .btn--white:hover {
  background: #f7f5f1;
  border-color: rgba(23,102,80,0.3);
  color: var(--green-dark);
}
.header-actions .btn--ghost {
  background: rgba(23,102,80,0.08);
  border-color: rgba(23,102,80,0.14);
  color: var(--green-dark);
}
.header-actions .btn--ghost:hover {
  background: rgba(23,102,80,0.14);
  border-color: rgba(23,102,80,0.2);
  color: var(--green-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { text-align: center; }
.mobile-menu nav a,
.mobile-menu__toggle {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0;
  padding: 6px 32px;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  background: transparent;
  border: 0;
  width: 100%;
}
.mobile-menu nav a:hover,
.mobile-menu__toggle:hover { color: white; background: rgba(255,255,255,0.07); }
.mobile-menu__dropdown {
  display: none;
  max-width: 320px;
  margin: 4px auto 14px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}
.mobile-menu__dropdown.open {
  display: block;
}
.mobile-menu__dropdown a {
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 8px 12px !important;
  color: rgba(255,255,255,0.72) !important;
}
.mobile-menu__dropdown a:hover {
  color: #fff !important;
}
.mobile-menu__cta {
  color: white !important;
}
.mobile-menu__cta--secondary {
  color: rgba(255,255,255,0.76) !important;
}
.mobile-menu__footer {
  position: absolute;
  bottom: 32px;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-heading);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
/* Concentric circles motif */
.hero-circles {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-circles .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(23,102,80,0.08);
}
.hero-circles .c1 { width: 720px; height: 720px; }
.hero-circles .c2 { width: 520px; height: 520px; }
.hero-circles .c3 { width: 320px; height: 320px; border-color: rgba(23,102,80,0.12); }
.hero-circles .c4 { width: 150px; height: 150px; border-color: rgba(23,102,80,0.18); background: rgba(23,102,80,0.04); }

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-title {
  font-size: 76px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--green); display: block; }
.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual { position: relative; z-index: 1; }
.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.hero-img-wrap:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 32px;
  background: var(--green-dark);
  color: white;
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
}
.hero-badge .num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ===== Features / Why Us ===== */
.features-section {
  background: var(--green-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* decorative concentric rings */
.features-section::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 0 0 80px rgba(255,255,255,0.02), 0 0 0 160px rgba(255,255,255,0.015);
  pointer-events: none;
}
.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.features-header h2 {
  font-size: 40px;
  color: white;
}
.features-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 320px;
  text-align: right;
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 42px 34px 44px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  border-radius: var(--radius);
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}
.feature-card__num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: 0;
}
.feature-card__img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 20px;
  filter: saturate(0.9);
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* ===== About (Home) ===== */
.about-home {
  padding: 112px 0;
  background: white;
}
.about-home-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-home__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-home__title {
  font-size: 44px;
  margin-bottom: 20px;
}
.about-home__title span { color: var(--green); }
.about-home__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ===== Quote Banner ===== */
.quote-banner {
  background: var(--green-dark);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  pointer-events: none;
}
.quote-banner blockquote {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
.quote-banner cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
}

/* ===== Instagram (Home) ===== */
.instagram-home {
  padding: 96px 0;
  background: var(--cream);
}
.instagram-home__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.instagram-home__header h2 {
  font-size: 40px;
}
.instagram-home__header p {
  max-width: 380px;
  text-align: right;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insta-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(9,40,30,0.08);
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.insta-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(9,40,30,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}
.insta-card__hover a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  color: white;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.insta-card:hover img { transform: scale(1.08); }
.insta-card:hover .insta-card__hover { background: rgba(9,40,30,0.52); }
.insta-card:hover .insta-card__hover a { opacity: 1; transform: translateY(0); }
.instagram-home__cta { text-align: center; margin-top: 48px; }

/* ===== Footer ===== */
.site-footer-new {
  background: var(--green-dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer-new::before {
  content: '';
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 0 0 80px rgba(255,255,255,0.02);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand__logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  display: block;
}
.footer-brand__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  margin-bottom: 28px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--green); color: white; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer-col ul a:hover { color: white; }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-back-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  text-decoration: none;
}
.footer-back-top:hover { color: rgba(255,255,255,0.8); }
.footer-back-top i { font-size: 14px; }

/* ===== Page Hero ===== */
.page-hero {
  height: 360px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  margin-top: var(--header-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}
.page-hero__rings {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero__rings .r {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.page-hero__rings .r1 { width: 400px; height: 400px; }
.page-hero__rings .r2 { width: 260px; height: 260px; }
.page-hero__rings .r3 { width: 130px; height: 130px; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 58px;
  color: white;
  margin-bottom: 14px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb-nav a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav .sep {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

/* ===== About Page ===== */
.about-page-intro {
  padding: 100px 0;
  background: white;
}
.about-page-intro__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-page-intro__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-page-intro__title {
  font-size: 44px;
  margin-bottom: 20px;
}
.about-page-intro__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Why Us (about page) */
.wcu-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.wcu-header {
  text-align: center;
  margin-bottom: 56px;
}
.wcu-header h2 {
  font-size: 40px;
  margin-top: 12px;
}
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wcu-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 36px 44px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wcu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.wcu-card__icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 24px;
}
.wcu-card h3 { font-size: 20px; margin-bottom: 12px; }
.wcu-card p { font-size: 14px; line-height: 1.75; color: var(--text-secondary); }

/* Best Coffee Promo */
.coffee-promo {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.coffee-promo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coffee-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9,40,30,0.97) 45%, rgba(9,40,30,0.5) 100%);
}
.coffee-promo__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 80px 48px;
}
.coffee-promo__content h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}
.coffee-promo__content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* ===== Products Page ===== */
.products-page {
  padding: 80px 0 100px;
}
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.cat-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.cat-sidebar h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.cat-list { display: flex; flex-direction: column; gap: 3px; }
.cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cat-btn:hover { background: var(--cream); color: var(--text-primary); }
.cat-btn.active { background: var(--green); color: white; font-weight: 600; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream);
  display: block;
}
.product-card__body { padding: 18px 20px; }
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.product-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(23,102,80,0.09);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0;
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(9,40,30,0.72);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s var(--ease-out);
  position: relative;
  max-height: 90vh;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-box__img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.modal-box__body { padding: 40px 36px; overflow-y: auto; }
.modal-box__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: background var(--transition-fast);
}
.modal-box__close:hover { background: var(--cream); }
.modal-box__cat { margin-bottom: 14px; }
.modal-box__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.modal-box__desc { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }

/* ===== Contact Page ===== */
.contact-page { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: 38px;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.06); }
.contact-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(23,102,80,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 17px;
}
.contact-item h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 5px;
  letter-spacing: 0;
}
.contact-item p { font-size: 15px; color: var(--text-primary); margin: 0; line-height: 1.6; }

/* ===== Form Card ===== */
.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}
.form-card h3 { font-size: 22px; margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 17px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: white;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,107,107,0.5); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23,102,80,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Alert */
.orbit-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.orbit-alert.success {
  background: rgba(23,102,80,0.08);
  color: var(--green);
  border-color: rgba(23,102,80,0.2);
}
.orbit-alert.danger {
  background: rgba(220,38,38,0.06);
  color: #dc2626;
  border-color: rgba(220,38,38,0.15);
}

/* ===== Franchise Page ===== */
.franchise-page { padding: 100px 0; }
.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.franchise-content h2 {
  font-size: 44px;
  margin-bottom: 20px;
}
.franchise-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.franchise-steps { display: flex; flex-direction: column; gap: 16px; }
.franchise-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.franchise-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(23,102,80,0.1);
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.franchise-step p { margin: 0; font-size: 14px; color: var(--text-secondary); }

/* ===== Instagram Full Page ===== */
.instagram-full { padding: 80px 0 100px; background: var(--cream); }
.insta-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insta-full-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.insta-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.insta-full-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.insta-full-card__body { padding: 18px 20px; }
.insta-full-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0;
  text-transform: uppercase;
}
.insta-full-card__caption {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-inner, .about-home-inner, .about-page-intro__inner,
  .franchise-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { text-align: center; }
  .hero-eyebrow, .hero-actions { justify-content: center; }
  .hero-desc { max-width: 100%; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-badge { left: 0; }
  .features-header { flex-direction: column; }
  .features-header p { text-align: left; max-width: 100%; }
  .wcu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .products-layout { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
  .cat-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .cat-btn { width: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .insta-grid, .insta-full-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1240px) {
  .header-inner {
    gap: 14px;
    padding: 0 28px;
  }
  .header-nav ul {
    gap: 2px;
  }
  .header-nav a,
  .header-nav__toggle {
    font-size: 14px;
    padding: 9px 7px;
  }
  .header-actions .btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner {
    display: flex;
    padding: 0 20px;
  }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-box__img { min-height: 220px; max-height: 280px; }
  .wcu-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-home__header { flex-direction: column; align-items: flex-start; }
  .instagram-home__header p { text-align: left; }
  .hero-inner { padding: 60px 20px; }
  .about-home-inner, .about-page-intro__inner,
  .franchise-grid { padding: 0 20px; }
  .franchise-page .oc,
  .contact-page .oc,
  .products-page .oc,
  .wcu-section .oc,
  .about-page-intro .oc,
  .instagram-full .oc { padding: 0 20px; }
}
@media (max-width: 520px) {
  .insta-grid, .insta-full-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .page-hero { height: 280px; }
}

/* ===== MOBILE ENHANCEMENTS ===== */

/* Hamburger — min 44×44 touch target */
.hamburger { width: 44px; height: 44px; }
@media (max-width: 768px) {
  .header-actions { gap: 8px; }
  .header-actions .btn {
    font-size: 14px;
    padding: 10px 16px;
    min-height: 42px;
  }
}

/* btn--sm larger on mobile */
@media (max-width: 768px) {
  .btn--sm { padding: 11px 22px; font-size: 14px; }
}

/* Mobile menu — scrollable, smaller font */
.mobile-menu { overflow-y: auto; }
.mobile-menu nav a { font-size: 38px; }

/* Footer social — 44px touch target */
.footer-social a { width: 44px; height: 44px; }

/* Hero editorial — tighter on small phones */
@media (max-width: 520px) {
  .hero-left { padding: 28px 20px 44px; }
  .hero-left__title { font-size: 36px; }
  .hero-left__tagline { font-size: 14px; }
  .hero-left__actions { gap: 10px; }
  .hero-right { min-height: 200px; }
}

@media (max-width: 768px) {
  .features-header h2,
  .instagram-home__header h2 { font-size: 32px; }
  .about-home__title { font-size: 34px; }
  .quote-banner blockquote { font-size: 28px; }
}

@media (max-width: 420px) {
  .mobile-menu nav a { font-size: 30px; }
  .features-header h2,
  .instagram-home__header h2 { font-size: 28px; }
  .about-home__title { font-size: 30px; }
}

/* Feature cards — less padding on mobile */
@media (max-width: 768px) {
  .feature-card { padding: 32px 24px 36px; }
}

/* Instagram grid — single column at tablet */
@media (max-width: 768px) {
  .insta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .insta-grid { grid-template-columns: 1fr; }
}

/* Form inputs — comfortable on small phones */
@media (max-width: 480px) {
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 12px 14px; font-size: 15px; }
  .form-row { grid-template-columns: 1fr; }
}

/* About page intro — earlier padding reduction */
@media (max-width: 900px) {
  .about-page-intro__inner { padding: 0 24px; }
  .mvb-grid { grid-template-columns: 1fr; }
  .mvb-card { padding: 36px 28px; }
}

/* WCU grid intermediate step */
@media (max-width: 900px) {
  .wcu-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .wcu-card { padding: 36px 24px 32px; }
}

/* Franchise gallery — inline grid override for mobile */
@media (max-width: 768px) {
  .franchise-space-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
  }
  .franchise-space-grid img { height: 280px !important; }
}
@media (max-width: 520px) {
  .franchise-space-grid img { height: 220px !important; }
}

/* FAQ grid — single col at tablet */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Process steps — smaller padding on mobile */
@media (max-width: 520px) {
  .process-step { padding: 0 6px; }
  .process-step__icon { width: 56px; height: 56px; font-size: 18px; }
}

/* Franchise hero stats — wrap cleanly */
@media (max-width: 520px) {
  .franchise-hero__stats { gap: 24px; padding-top: 24px; }
  .franchise-stat .num { font-size: 1.5rem; }
}

/* Contact grid — reduce gap on mobile */
@media (max-width: 520px) {
  .contact-grid { gap: 32px; }
}

/* Support grid on franchise */
@media (max-width: 768px) {
  .support-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Landscape mobile — reduce hero height */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-editorial { min-height: 100svh; }
  .hero-left { padding: 24px 32px 32px; }
  .franchise-hero { min-height: 100svh; }
}

/* Prevent horizontal scroll leak */
html, body { max-width: 100%; overflow-x: hidden; }
