/* ============================================
   YORANQEMLAB - MAIN STYLESHEET
   Design Concept: Deep Focus
   Color Strategy: color-mix() from base colors
   ============================================ */


:root {
  
  --base-warm: oklch(42% 0.08 50);
  --base-amber: oklch(72% 0.13 70);
  --base-cream: oklch(97% 0.02 80);

  
  --primary: var(--base-warm);
  --primary-light: color-mix(in oklch, var(--base-warm), white 40%);
  --primary-lighter: color-mix(in oklch, var(--base-warm), white 70%);
  --primary-dark: color-mix(in oklch, var(--base-warm), black 20%);

  --accent: var(--base-amber);
  --accent-light: color-mix(in oklch, var(--base-amber), white 50%);
  --accent-dark: color-mix(in oklch, var(--base-amber), black 25%);
  --accent-glow: color-mix(in oklch, var(--base-amber), transparent 60%);

  --surface: var(--base-cream);
  --surface-warm: color-mix(in oklch, var(--base-cream), var(--base-amber) 8%);
  --surface-card: color-mix(in oklch, white, var(--base-amber) 4%);
  --surface-dark: color-mix(in oklch, var(--base-warm), black 10%);

  --text-primary: color-mix(in oklch, var(--base-warm), black 35%);
  --text-secondary: color-mix(in oklch, var(--base-warm), white 20%);
  --text-light: color-mix(in oklch, var(--base-warm), white 55%);
  --text-on-dark: color-mix(in oklch, var(--base-cream), white 15%);

  --border: color-mix(in oklch, var(--base-amber), white 65%);
  --border-strong: color-mix(in oklch, var(--base-amber), white 40%);

  
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--base-warm), transparent 82%), 0 1px 2px color-mix(in oklch, var(--base-warm), transparent 88%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--base-warm), transparent 78%), 0 2px 6px color-mix(in oklch, var(--base-warm), transparent 85%);
  --shadow-lg: 0 10px 30px color-mix(in oklch, var(--base-warm), transparent 72%), 0 4px 12px color-mix(in oklch, var(--base-warm), transparent 82%);
  --shadow-xl: 0 20px 50px color-mix(in oklch, var(--base-warm), transparent 65%), 0 8px 20px color-mix(in oklch, var(--base-warm), transparent 78%);
  --shadow-glow: 0 0 20px var(--accent-glow), 0 4px 16px color-mix(in oklch, var(--base-warm), transparent 75%);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.canvas {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-dark);
}

ul { list-style: none; }
ol { padding-left: 0; }


.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--primary);
  color: var(--text-on-dark);
  font-weight: 500;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-to-content:focus {
  transform: translateY(0);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.stage-heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.stage-heading em {
  font-style: normal;
  color: var(--accent);
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: var(--space-sm);
  padding: 4px 12px;
  background: color-mix(in oklch, var(--accent), white 82%);
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, var(--accent), white 60%);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: color-mix(in oklch, var(--base-warm), black 30%);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm), 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: color-mix(in oklch, var(--base-warm), black 30%);
  box-shadow: var(--shadow-md), 0 0 16px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: color-mix(in oklch, white, transparent 40%);
}

.btn-ghost:hover {
  background: color-mix(in oklch, white, transparent 85%);
  border-color: white;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary-light);
}

.btn-outline:hover {
  background: var(--primary-lighter);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  min-height: 56px;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem var(--space-md);
  background: transparent;
  transition: padding var(--transition-slow), background var(--transition-slow), backdrop-filter var(--transition-slow);
}

.site-header.scrolled {
  padding: 0.75rem var(--space-md);
  background: color-mix(in oklch, var(--surface-warm), transparent 5%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo .logo-img {
  height: 42px;
  width: auto;
  transition: height var(--transition-slow);
}

.site-header.scrolled .logo-img {
  height: 32px;
}


.drawer-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.drawer-trigger:hover {
  background: color-mix(in oklch, var(--accent), transparent 85%);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.site-header.scrolled .hamburger-line {
  background: var(--text-primary);
}


.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--surface-card);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.drawer.drawer-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.drawer-logo img {
  height: 36px;
  width: auto;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-primary);
  padding: var(--space-xs);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.drawer-close:hover {
  background: var(--primary-lighter);
  color: var(--primary);
}

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.drawer-link {
  display: block;
  padding: 0.9rem var(--space-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
  background: var(--primary-lighter);
  color: var(--primary-dark);
  border-left-color: var(--accent);
}

.drawer-footer {
  margin-top: var(--space-xl);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.drawer-contact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.drawer-contact i {
  color: var(--accent);
  width: 16px;
}

.drawer-contact a {
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.drawer-contact a:hover {
  color: var(--accent-dark);
}


.stage-curtain {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--primary-dark), transparent 40%);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}

.stage-curtain.drawer-open {
  opacity: 1;
  pointer-events: all;
}


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stage-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px) brightness(0.55) saturate(0.85);
  transform: scale(1.05);
  z-index: 0;
}

.stage-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    color-mix(in oklch, var(--primary-dark), transparent 30%) 0%,
    color-mix(in oklch, var(--primary), transparent 55%) 50%,
    color-mix(in oklch, var(--accent-dark), transparent 65%) 100%
  );
  z-index: 1;
}

.stage-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--space-3xl) + 80px) var(--space-md) var(--space-3xl);
}

.spotlight {
  max-width: 680px;
  background: color-mix(in oklch, white, transparent 88%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in oklch, white, transparent 75%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-xl), inset 0 1px 0 color-mix(in oklch, white, transparent 70%);
}

.spotlight-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-md);
  padding: 4px 12px;
  background: color-mix(in oklch, var(--accent), transparent 80%);
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklch, var(--accent), transparent 60%);
}

.stage-subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: color-mix(in oklch, var(--text-on-dark), transparent 15%);
  margin: var(--space-md) 0 var(--space-lg);
  line-height: 1.65;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.canvas-section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-heading {
  margin-bottom: var(--space-sm);
}


.angled-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--space-2xl) + 40px);
}


.intro-section {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.intro-text .section-label {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.intro-text .section-heading {
  margin-bottom: var(--space-md);
}

.intro-text p {
  margin-bottom: var(--space-md);
}

.intro-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: blur(0);
}

.intro-figure:hover img {
  transform: scale(1.03);
}

.intro-figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(transparent, color-mix(in oklch, var(--primary-dark), transparent 20%));
  color: var(--text-on-dark);
  font-size: 0.85rem;
  font-style: italic;
}


.services-section {
  background: var(--surface-warm);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

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

.shelf-item {
  list-style: none;
}

.card-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.card-link:hover .service-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-light);
}

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  height: 100%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.spotlight-card {
  background: var(--primary);
  border-color: var(--primary-dark);
}

.spotlight-card h3,
.spotlight-card p {
  color: var(--text-on-dark);
}

.spotlight-card .card-cta {
  color: var(--accent);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--accent), white 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-dark);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.spotlight-card .card-icon {
  background: color-mix(in oklch, var(--accent), transparent 60%);
  color: var(--accent);
}

.service-card:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 12px var(--accent-glow);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  font-family: 'Poppins', sans-serif;
  transition: gap var(--transition-base);
}

.card-link:hover .card-cta {
  gap: 10px;
}


.process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.process-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.depth-figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, color-mix(in oklch, var(--primary-dark), transparent 55%) 100%);
  z-index: 1;
  pointer-events: none;
}

.process-figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: blur(0);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.process-figure:hover img {
  transform: scale(1.04);
}

.process-content .section-label {
  margin-bottom: var(--space-sm);
}

.process-content p {
  margin-bottom: var(--space-md);
}


.gallery-section {
  background: var(--primary);
}

.gallery-section .section-heading {
  color: var(--text-on-dark);
}

.gallery-section .section-label {
  background: color-mix(in oklch, var(--accent), transparent 75%);
  color: var(--accent);
  border-color: color-mix(in oklch, var(--accent), transparent 50%);
}

.gallery-swiper {
  padding-bottom: 3rem !important;
}

.gallery-slide-fig {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0;
  aspect-ratio: 4/3;
}

.gallery-slide-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: blur(0);
}

.gallery-slide-fig:hover img {
  transform: scale(1.04);
}

.swiper-pagination-bullet {
  background: var(--accent) !important;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.2);
  box-shadow: 0 0 6px var(--accent);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
  background: color-mix(in oklch, var(--surface-card), transparent 15%);
  width: 44px !important;
  height: 44px !important;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent);
  color: white !important;
}


.faq-section {
  background: var(--surface-warm);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-base);
  min-height: 64px;
}

.faq-question:hover {
  background: color-mix(in oklch, var(--accent), transparent 92%);
  color: var(--primary-dark);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
  background: color-mix(in oklch, var(--accent), transparent 88%);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent-dark);
  font-size: 0.85rem;
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
  border-top: 1px solid var(--border);
  animation: faq-expand 0.25s ease forwards;
}

@keyframes faq-expand {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  font-size: 0.95rem;
  margin: var(--space-sm) 0 0;
}

.faq-answer a {
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--accent-light);
  transition: all var(--transition-base);
}

.faq-answer a:hover {
  color: var(--primary);
}


.cta-section {
  background: var(--primary);
}

.cta-section.angled-top {
  background: var(--primary);
}

.cta-inner {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 640px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}

.cta-subtext {
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}


.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background: var(--primary);
}

.page-hero-short {
  min-height: 30vh;
  padding-top: 100px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.45) saturate(0.8);
  transform: scale(1.04);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-lg);
  width: 100%;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  max-width: 560px;
  margin: 0;
}


.values-section {
  background: var(--surface);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.value-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  opacity: 0.7;
}

.value-text h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.value-text p {
  font-size: 0.92rem;
  margin: 0;
}

.values-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.values-figure img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.values-figure:hover img {
  transform: scale(1.03);
}


.ingredients-section {
  background: var(--surface-warm);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

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

.ingredient-card {
  list-style: none;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.ingredient-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in oklch, var(--accent), white 72%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-dark);
  margin-bottom: var(--space-md);
}

.ingredient-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.ingredient-card p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}


.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.step-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: color-mix(in oklch, var(--accent), white 78%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.65;
}


.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  list-style: none;
}

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

.detail-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

.card-link:hover .detail-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.detail-card-visual {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.detail-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: blur(0);
}

.card-link:hover .detail-card-visual img {
  transform: scale(1.05);
}

.detail-card-content {
  padding: var(--space-lg);
}

.detail-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.detail-card-content p {
  font-size: 0.93rem;
  margin-bottom: var(--space-md);
}


.bring-section {
  background: var(--surface);
}

.bring-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.bring-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.bring-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bring-list i {
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.bring-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bring-figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bring-figure:hover img {
  transform: scale(1.03);
}


.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 860px;
  margin: 0 auto;
}

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

.schedule-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.schedule-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.schedule-card-alt {
  background: var(--primary);
  border-color: var(--primary-dark);
}

.schedule-card-alt h3,
.schedule-card-alt .schedule-day,
.schedule-card-alt .schedule-time,
.schedule-card-alt .schedule-note {
  color: var(--text-on-dark);
}

.schedule-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.schedule-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.schedule-times {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border);
  gap: var(--space-sm);
}

.schedule-card-alt .schedule-row {
  border-bottom-color: color-mix(in oklch, white, transparent 75%);
}

.schedule-day {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.schedule-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent-dark);
}

.schedule-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}


.location-section {
  background: var(--surface-warm);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.location-address {
  font-style: normal;
}

.location-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.location-detail i {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  margin-top: 3px;
}

.location-detail strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.location-detail p {
  margin: 0;
  font-size: 0.95rem;
}

.transport-info {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.transport-info h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.transport-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.transport-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.transport-list i {
  color: var(--accent-dark);
  flex-shrink: 0;
  width: 18px;
  margin-top: 2px;
}


.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.contact-form-wrap .section-heading {
  margin-bottom: var(--space-sm);
}

.contact-form-wrap p {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}


.form-progress {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.form-progress-step {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.form-progress-step.active {
  opacity: 1;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--border-strong);
  transition: background var(--transition-base);
}

.form-progress-step.active .step-dot {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--text-light);
}

.form-progress-step.active .step-label {
  color: var(--text-primary);
}

.form-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: var(--radius-full);
}

.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem var(--space-sm);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface-card);
  transition: all var(--transition-base);
  outline: none;
  min-height: 48px;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light);
}

.form-field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  flex-direction: row;
}

.form-field-checkbox input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  min-height: auto;
}

.form-field-checkbox label {
  font-size: 0.88rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  margin: 0;
}

.form-field-checkbox label a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.field-required {
  color: var(--accent-dark);
}

.form-step-actions {
  display: flex;
  margin-top: var(--space-lg);
}

.form-step-actions-two {
  justify-content: space-between;
}


.contact-address-block {
  font-style: normal;
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--accent), white 75%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-map-mini {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.newsletter-section {
  background: var(--surface-warm);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

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

.newsletter-text .section-heading {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.newsletter-fields {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.newsletter-fields .form-field {
  flex: 1;
  min-width: 200px;
  margin: 0;
}

.newsletter-disclaimer {
  margin-top: var(--space-sm);
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.5;
}

.newsletter-disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
}


.canvas-thanks {
  background: var(--surface-warm);
}

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: var(--space-xl) var(--space-md);
}

.thanks-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4rem);
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in oklch, var(--accent), white 72%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-dark);
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 24px var(--accent-glow);
}

.thanks-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: var(--space-md);
}

.thanks-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}


.legal-section {
  background: var(--surface);
  padding-top: var(--space-2xl);
}

.legal-content h2 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--border);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1.65;
}

.legal-content a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.legal-content abbr {
  text-decoration: underline dotted;
  cursor: help;
}

.legal-content cite {
  font-style: italic;
}


.site-footer {
  background: color-mix(in oklch, var(--primary-dark), black 8%);
  color: var(--text-on-dark);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid color-mix(in oklch, white, transparent 80%);
}

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

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

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.footer-nav ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav a,
.footer-legal a {
  font-size: 0.9rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  transition: color var(--transition-base);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  margin-bottom: var(--space-sm);
}

.footer-contact i {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  margin-top: 2px;
}

.footer-contact a {
  color: color-mix(in oklch, var(--text-on-dark), transparent 20%);
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.footer-bottom small {
  font-size: 0.8rem;
  color: color-mix(in oklch, var(--text-on-dark), transparent 40%);
}

.footer-bottom small abbr {
  text-decoration: underline dotted;
  cursor: help;
}

.footer-bottom-only {
  border-top: 1px solid color-mix(in oklch, white, transparent 80%);
  padding-top: var(--space-md);
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 767px) {
  .canvas-section {
    padding: var(--space-xl) 0;
  }

  .angled-top {
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(var(--space-xl) + 24px);
  }

  .stage-actions {
    flex-direction: column;
  }

  .stage-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .spotlight {
    padding: var(--space-lg) var(--space-md);
  }

  .faq-question {
    padding: var(--space-md) var(--space-md);
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
  }

  .step-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .value-item {
    gap: var(--space-sm);
  }

  .schedule-row {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }

  .newsletter-fields {
    flex-direction: column;
  }

  .newsletter-fields .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-step-actions-two {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .form-step-actions-two .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .section-header {
    text-align: left;
  }

  .section-intro {
    margin: 0;
  }
}