:root {
  /* Swiss Coffee Palette - Light Theme */
  --cream-lightest: #ede9e2;
  --cream: #EDE8DF;
  --warm-beige: #D4C4B0;
  --light-sage: #A8B5A0;
  --medium-sage: #708973;
  --deep-sage: #4A5F4D;
  --sage-dark: #3A4A3D;

  /* Semantic colors */
  --brand-white: #ede9e2;
  --bg: var(--cream-lightest);
  --bg-elevated: var(--brand-white);
  --bg-subtle: var(--cream);
  --text: rgba(40, 40, 40, 0.92);
  --text-muted: rgba(40, 40, 40, 0.60);
  --accent: var(--medium-sage);
  --accent-hover: var(--deep-sage);
  --border: rgba(40, 40, 40, 0.12);
  --border-subtle: rgba(40, 40, 40, 0.08);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 233, 226, 1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--deep-sage);
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: var(--deep-sage);
  color: var(--brand-white);
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Hero - Search Focused */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-lightest) 100%);
  position: relative;
  overflow: hidden;
  /* Maintain existing padding */
}

.pathfinder {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  min-height: 80vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 6rem;
}

.pathfinder h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.2;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: var(--cream-lightest);
}

.pathfinder::before {
  content: none;
}

.pathfinder-subtitle {
  font-size: 1.15rem;
  color: var(--cream-lightest);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Search Box */
.search-box {
  display: flex;
  gap: 0;
  background: transparent;
  padding: 0;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  width: 80%;
  margin: auto auto 0;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 12rem 1rem 2rem;
  font-size: 1.1rem;
  border: 1px solid rgba(237, 233, 226, 0.3);
  border-radius: 999px;
  background: var(--brand-white);
  outline: none;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  font-family: var(--font-sans);
}

.search-input:focus {
  border-color: var(--medium-sage);
  box-shadow: 0 0 0 4px rgba(112, 137, 115, 0.12);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.8rem 4.5rem;
  background: var(--deep-sage);
  color: var(--brand-white);
  border: none;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  .hero {
    text-align: left;
  }

  .pathfinder {
    margin: 0 auto;
    max-width: 100%;
    padding: 2.5rem 0 1rem;
    align-items: flex-start;
  }

  .pathfinder h1,
  .pathfinder-subtitle {
    margin-left: -5%;
    max-width: 600px;
  }

  .pathfinder h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }

  .pathfinder-subtitle {
    margin-bottom: 5rem;
    font-size: 1.25rem;
  }

  .search-box {
    margin: auto auto 0;
    width: 110%;
    margin-left: -5%;
  }
}

.search-btn:hover {
  background: var(--sage-dark);
}

/* Category Panels */
.categories {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.category-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: var(--brand-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  cursor: pointer;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--light-sage);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.category-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.category-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Product Cards */
/* Product Cards - Full Width Layout */
.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.product-card {
  background: var(--brand-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: Stacked */
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--light-sage);
  transform: translateY(-2px);
}

.product-info {
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-visual {
  background: var(--cream);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--medium-sage);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.product-price {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-sage);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-duration {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Desktop: 3-Column Layout (Info | Visual | Actions) */
@media (min-width: 900px) {
  .product-card {
    grid-template-columns: 1.25fr 1fr 0.85fr;
    min-height: 280px;
  }

  .product-info {
    padding: 2.5rem 2rem 2.5rem 3rem;
  }

  .product-visual {
    height: 100%;
    min-height: 100%;
  }

  .product-actions {
    padding: 2.5rem 3rem 2.5rem 1rem;
    border-left: 1px solid var(--border-subtle);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
  text-decoration: none;
}

.btn-primary {
  background: var(--deep-sage);
  color: var(--brand-white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--brand-white);
  color: var(--deep-sage);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--medium-sage);
  background: var(--cream);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-light {
  background: var(--brand-white);
}

.section-dark {
  background: var(--cream);
}

/* Footer */
.footer {
  background: var(--deep-sage);
  color: rgba(237, 233, 226, 0.85);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-logo {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--brand-white);
}

.footer-tagline {
  color: rgba(237, 233, 226, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(237, 233, 226, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-white);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Category List - Full Width */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card-wide {
  background: var(--brand-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr;
}

.category-card-wide:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--light-sage);
  transform: translateY(-2px);
}

.category-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--deep-sage);
  letter-spacing: -0.02em;
}

.category-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.category-visual {
  background: var(--cream);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card-wide:hover .category-visual img {
  transform: scale(1.03);
}

.category-placeholder {
  font-size: 4rem;
  opacity: 0.5;
}

.category-action {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-white);
}

/* Desktop: Wide Layout (Info | Visual | Action) */
@media (min-width: 900px) {
  .category-card-wide {
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    min-height: 180px;
    /* Reduced from 320px for compact design */
  }

  .category-info {
    padding: 1.5rem 2rem;
    /* Reduced padding */
  }

  .category-info h3 {
    font-size: 1.5rem;
    /* Slightly smaller heading */
    margin-bottom: 0.5rem;
  }

  .category-info p {
    font-size: 0.95rem;
  }

  .category-visual {
    height: 100%;
    min-height: 100%;
    /* Adapts to content height */
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
  }

  .category-action {
    padding: 1.5rem;
  }

  .category-placeholder {
    font-size: 2.5rem;
    /* Smaller icon */
  }
}

/* Hero Video Background */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Allow clicks to pass through */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(237, 233, 226, 0.2) 0%, rgba(237, 233, 226, 0.4) 100%);
  z-index: 1;
}

/* Ensure content sits above video */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Fallback for when video fails or not present */
.hero-video-container {
  background-color: var(--cream);
}

/* Desktop tweak for hero video aspect ratio */