/* =============================================
   ORLENVIX LAB — MAIN STYLESHEET
   Prefix: od-
   ============================================= */


:root {
  --od-ink: #1a1625;
  --od-ink-soft: #2e2a3a;
  --od-ink-muted: #5c5570;
  --od-paper: #faf8f5;
  --od-paper-warm: #f5f0e8;
  --od-paper-tinted: #eee9f7;
  --od-white: #ffffff;

  --od-primary: #6c3fc5;
  --od-primary-dark: #4e2d94;
  --od-primary-light: #8b62d9;
  --od-accent: #c46b3a;
  --od-accent-light: #e8956b;
  --od-gold: #c9a84c;
  --od-sage: #5a7a5e;

  --od-grad-hero: linear-gradient(135deg, #1a1625 0%, #2e1a4a 50%, #1a2535 100%);
  --od-grad-primary: linear-gradient(135deg, #6c3fc5, #4e2d94);
  --od-grad-accent: linear-gradient(135deg, #c46b3a, #e8956b);
  --od-grad-warm: linear-gradient(135deg, #f5f0e8, #eee9f7);
  --od-grad-cell: linear-gradient(135deg, #6c3fc5 0%, #4e2d94 100%);

  --od-shadow-xs: 0 1px 3px rgba(26,22,37,0.06), 0 1px 2px rgba(26,22,37,0.04);
  --od-shadow-sm: 0 2px 8px rgba(26,22,37,0.08), 0 1px 4px rgba(26,22,37,0.05);
  --od-shadow-md: 0 4px 20px rgba(26,22,37,0.10), 0 2px 8px rgba(26,22,37,0.06);
  --od-shadow-lg: 0 8px 40px rgba(26,22,37,0.14), 0 4px 16px rgba(26,22,37,0.08);
  --od-shadow-xl: 0 16px 60px rgba(26,22,37,0.18), 0 8px 24px rgba(26,22,37,0.10);
  --od-shadow-primary: 0 8px 32px rgba(108,63,197,0.28), 0 2px 8px rgba(108,63,197,0.15);

  --od-radius-xs: 6px;
  --od-radius-sm: 10px;
  --od-radius-md: 16px;
  --od-radius-lg: 24px;
  --od-radius-xl: 32px;
  --od-radius-pill: 999px;

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

  --od-nav-h: 80px;
  --od-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --od-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--od-paper);
  color: var(--od-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--od-transition), opacity var(--od-transition); }
a:hover { opacity: 0.82; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
h5 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p { color: var(--od-ink-muted); line-height: 1.7; }


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

.od-section { padding: var(--od-space-2xl) 0; }
.od-section-alt { background-color: var(--od-paper-warm); }

.od-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--od-space-xl);
}
.od-section-header h2 { margin-bottom: var(--od-space-sm); }
.od-section-header p { font-size: 1.05rem; }


.od-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108,63,197,0.08);
  height: var(--od-nav-h);
  transition: transform var(--od-transition-slow), opacity var(--od-transition-slow), box-shadow var(--od-transition);
  box-shadow: var(--od-shadow-xs);
}

.od-header.od-header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.od-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--od-space-md);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--od-space-md);
}

.od-nav-left, .od-nav-right {
  display: flex;
  align-items: center;
  gap: var(--od-space-lg);
}
.od-nav-right { justify-content: flex-end; }

.od-nav-inner > .od-logo { justify-self: center; }

.od-nav-left a, .od-nav-right a:not(.od-btn-nav) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--od-ink-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--od-transition);
}
.od-nav-left a::after, .od-nav-right a:not(.od-btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--od-primary);
  border-radius: 2px;
  transition: width var(--od-transition);
}
.od-nav-left a:hover, .od-nav-right a:not(.od-btn-nav):hover { color: var(--od-primary); opacity: 1; }
.od-nav-left a:hover::after, .od-nav-right a:not(.od-btn-nav):hover::after { width: 100%; }
.od-nav-active { color: var(--od-primary) !important; }
.od-nav-active::after { width: 100% !important; }

.od-btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--od-grad-primary);
  color: var(--od-white) !important;
  border-radius: var(--od-radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--od-shadow-primary);
  transition: transform var(--od-transition), box-shadow var(--od-transition), opacity var(--od-transition);
}
.od-btn-nav:hover { transform: translateY(-1px); box-shadow: 0 12px 40px rgba(108,63,197,0.35); opacity: 1; }

.od-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.od-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--od-ink);
  border-radius: 2px;
  transition: transform var(--od-transition), opacity var(--od-transition);
}


.od-mini-nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%) translateY(-80px);
  z-index: 901;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--od-transition-slow), opacity var(--od-transition-slow);
}
.od-mini-nav.od-mini-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.od-mini-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--od-grad-primary);
  border-radius: var(--od-radius-pill);
  color: var(--od-white);
  font-size: 1rem;
  box-shadow: var(--od-shadow-primary);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-mini-hamburger:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(108,63,197,0.4); }


.od-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--od-grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--od-transition-slow);
}
.od-mobile-overlay.od-overlay-open {
  opacity: 1;
  pointer-events: all;
}
.od-overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--od-white);
  font-size: 1.4rem;
  border-radius: var(--od-radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--od-transition), transform var(--od-transition);
}
.od-overlay-close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }

.od-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--od-space-lg);
}
.od-overlay-nav a {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  transition: color var(--od-transition), transform var(--od-transition);
}
.od-overlay-nav a:hover { color: var(--od-white); transform: translateX(8px); opacity: 1; }


.od-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--od-grad-primary);
  color: var(--od-white);
  border-radius: var(--od-radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--od-shadow-primary);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
  border: none;
}
.od-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(108,63,197,0.38); opacity: 1; color: var(--od-white); }

.od-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--od-radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--od-transition), border-color var(--od-transition), color var(--od-transition);
}
.od-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--od-white); opacity: 1; }

.od-btn-inline { margin-top: var(--od-space-sm); }


.od-hero {
  min-height: 100vh;
  background: var(--od-grad-hero);
  display: flex;
  align-items: center;
  padding-top: var(--od-nav-h);
  position: relative;
  overflow: hidden;
}
.od-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,63,197,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.od-hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,107,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.od-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--od-space-2xl) var(--od-space-md);
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: var(--od-space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.od-hero-label {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(108,63,197,0.25);
  border: 1px solid rgba(108,63,197,0.4);
  border-radius: var(--od-radius-pill);
  color: var(--od-primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--od-space-md);
}

.od-hero-title {
  color: var(--od-white);
  margin-bottom: var(--od-space-md);
}
.od-hero-title em {
  font-style: normal;
  background: var(--od-grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.od-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: var(--od-space-lg);
  line-height: 1.75;
}

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

.od-hero-visual {
  position: relative;
  border-radius: var(--od-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--od-shadow-xl), 0 0 0 1px rgba(108,63,197,0.2);
}
.od-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.od-hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(26,22,37,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(108,63,197,0.3);
  border-radius: var(--od-radius-pill);
  color: var(--od-white);
  font-size: 0.85rem;
  font-weight: 600;
}
.od-hero-badge i { color: var(--od-accent-light); }


.od-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.od-bento-cell {
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-bento-cell:hover { transform: translateY(-4px); box-shadow: var(--od-shadow-lg); }

.od-cell-large {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  min-height: 420px;
  background: var(--od-ink);
}
.od-cell-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.od-cell-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.od-cell-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--od-space-lg);
  background: linear-gradient(to top, rgba(26,22,37,0.95) 0%, transparent 100%);
}
.od-cell-overlay h2 { color: var(--od-white); margin-bottom: var(--od-space-xs); font-size: clamp(1.3rem, 3vw, 2rem); }
.od-cell-overlay p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

.od-cell-tall {
  grid-row: span 2;
  background: var(--od-grad-cell);
  padding: var(--od-space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
}
.od-cell-tall h3 { color: var(--od-white); margin-bottom: var(--od-space-xs); }
.od-cell-tall p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.od-cell-icon { font-size: 2rem; color: rgba(255,255,255,0.4); margin-bottom: auto; padding-top: var(--od-space-xs); }

.od-cell-small {
  padding: var(--od-space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}
.od-cell-warm { background: var(--od-paper-warm); }
.od-cell-warm h3 { color: var(--od-ink); margin-bottom: var(--od-space-xs); }
.od-cell-warm p { font-size: 0.9rem; }
.od-cell-dark { background: var(--od-ink-soft); }
.od-cell-dark h3 { color: var(--od-white); margin-bottom: var(--od-space-xs); }
.od-cell-dark p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.od-cell-icon-sm { font-size: 1.4rem; color: var(--od-primary-light); margin-bottom: var(--od-space-sm); }
.od-cell-dark .od-cell-icon-sm { color: var(--od-accent-light); }

.od-cell-wide {
  grid-column: span 3;
  background: var(--od-white);
  padding: var(--od-space-lg);
  box-shadow: var(--od-shadow-sm);
}
.od-cell-wide-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--od-space-lg);
  align-items: center;
}
.od-cell-wide h3 { color: var(--od-ink); margin-bottom: var(--od-space-xs); }
.od-cell-wide p { font-size: 0.95rem; }
.od-cell-wide-img {
  width: 200px; height: 140px;
  object-fit: cover;
  border-radius: var(--od-radius-md);
  box-shadow: var(--od-shadow-md);
  flex-shrink: 0;
}


.od-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.od-feature-item {
  display: flex;
  gap: var(--od-space-md);
  padding: var(--od-space-lg);
  border-bottom: 1px solid rgba(108,63,197,0.08);
  transition: background var(--od-transition);
}
.od-feature-item:hover { background: var(--od-white); }
.od-feature-item:nth-child(odd) { border-right: 1px solid rgba(108,63,197,0.08); }
.od-feature-item:nth-last-child(-n+2) { border-bottom: none; }

.od-feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--od-paper-tinted);
  border-radius: var(--od-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-primary);
  font-size: 1.1rem;
  transition: background var(--od-transition), color var(--od-transition);
}
.od-feature-item:hover .od-feature-icon { background: var(--od-primary); color: var(--od-white); }

.od-feature-text h4 { color: var(--od-ink); margin-bottom: 0.4rem; }
.od-feature-text p { font-size: 0.9rem; }


.od-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--od-space-md);
  position: relative;
}
.od-steps-grid::before {
  content: '';
  position: absolute;
  top: 60px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--od-primary-light), var(--od-accent));
  opacity: 0.3;
  pointer-events: none;
}

.od-step-card {
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  padding: var(--od-space-lg);
  box-shadow: var(--od-shadow-md);
  position: relative;
  transition: transform var(--od-transition), box-shadow var(--od-transition);
  border: 1px solid rgba(108,63,197,0.06);
}
.od-step-card:hover { transform: translateY(-6px); box-shadow: var(--od-shadow-xl); }

.od-step-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--od-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--od-space-sm);
  display: block;
}
.od-step-icon {
  width: 52px; height: 52px;
  background: var(--od-paper-tinted);
  border-radius: var(--od-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--od-primary);
  font-size: 1.2rem;
  margin-bottom: var(--od-space-md);
}
.od-step-card h3 { color: var(--od-ink); margin-bottom: var(--od-space-sm); }
.od-step-card p { font-size: 0.9rem; }


.od-gallery-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  border-radius: var(--od-radius-xl);
  overflow: hidden;
}
.od-gallery-cell { overflow: hidden; position: relative; }
.od-gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.od-gallery-cell:hover img { transform: scale(1.05); }
.od-gallery-main { grid-row: span 2; }
.od-gallery-tall { grid-row: span 2; }


.od-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--od-space-md);
}

.od-badge-card {
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  padding: var(--od-space-lg);
  box-shadow: var(--od-shadow-sm);
  border: 1px solid rgba(108,63,197,0.06);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-badge-card:hover { transform: translateY(-4px); box-shadow: var(--od-shadow-lg); }

.od-badge-icon {
  width: 52px; height: 52px;
  background: var(--od-grad-primary);
  border-radius: var(--od-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--od-white);
  font-size: 1.2rem;
  margin-bottom: var(--od-space-md);
  box-shadow: var(--od-shadow-primary);
}
.od-badge-card h4 { color: var(--od-ink); margin-bottom: 0.5rem; }
.od-badge-card p { font-size: 0.88rem; }


.od-cta-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--od-grad-hero);
  border-radius: var(--od-radius-xl);
  overflow: hidden;
  box-shadow: var(--od-shadow-xl);
}
.od-cta-content {
  padding: var(--od-space-2xl) var(--od-space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--od-space-md);
}
.od-cta-content h2 { color: var(--od-white); }
.od-cta-content p { color: rgba(255,255,255,0.72); font-size: 1rem; }
.od-cta-visual { overflow: hidden; min-height: 360px; }
.od-cta-visual img { width: 100%; height: 100%; object-fit: cover; }


.od-page-hero {
  background: var(--od-grad-hero);
  padding: calc(var(--od-nav-h) + var(--od-space-2xl)) 0 var(--od-space-2xl);
}
.od-page-hero-inner { max-width: 680px; }
.od-page-hero-inner h1 { color: var(--od-white); margin-bottom: var(--od-space-sm); }
.od-page-hero-inner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }
.od-page-hero .od-hero-label { margin-bottom: var(--od-space-sm); }


.od-partners-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--od-space-md);
}
.od-partner-card {
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  padding: var(--od-space-lg);
  box-shadow: var(--od-shadow-sm);
  border: 1px solid rgba(108,63,197,0.06);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-partner-card:hover { transform: translateY(-4px); box-shadow: var(--od-shadow-lg); }
.od-partner-featured {
  grid-column: span 2;
  background: var(--od-paper-tinted);
  border-color: rgba(108,63,197,0.15);
}
.od-partner-icon {
  width: 52px; height: 52px;
  background: var(--od-grad-primary);
  border-radius: var(--od-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--od-white);
  font-size: 1.2rem;
  margin-bottom: var(--od-space-md);
  box-shadow: var(--od-shadow-primary);
}
.od-partner-card h3 { color: var(--od-ink); margin-bottom: var(--od-space-sm); }
.od-partner-card p { font-size: 0.9rem; }
.od-partner-tag {
  display: inline-block;
  margin-top: var(--od-space-md);
  padding: 0.3rem 0.85rem;
  background: var(--od-paper-warm);
  border-radius: var(--od-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--od-primary);
  border: 1px solid rgba(108,63,197,0.15);
}

.od-collab-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--od-space-xl);
  align-items: center;
  background: var(--od-white);
  border-radius: var(--od-radius-xl);
  overflow: hidden;
  box-shadow: var(--od-shadow-md);
}
.od-collab-text { padding: var(--od-space-xl); }
.od-collab-text h2 { color: var(--od-ink); margin-bottom: var(--od-space-md); }
.od-collab-text p { margin-bottom: var(--od-space-lg); }
.od-collab-img { overflow: hidden; min-height: 320px; }
.od-collab-img img { width: 100%; height: 100%; object-fit: cover; }

.od-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--od-space-md);
}
.od-value-item {
  text-align: center;
  padding: var(--od-space-lg) var(--od-space-md);
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  box-shadow: var(--od-shadow-sm);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-value-item:hover { transform: translateY(-4px); box-shadow: var(--od-shadow-lg); }
.od-value-item i {
  font-size: 1.8rem;
  color: var(--od-primary);
  margin-bottom: var(--od-space-md);
  display: block;
}
.od-value-item h4 { color: var(--od-ink); margin-bottom: 0.5rem; }
.od-value-item p { font-size: 0.88rem; }


.od-pricing-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--od-space-md);
}
.od-pricing-card {
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  padding: var(--od-space-xl);
  box-shadow: var(--od-shadow-md);
  border: 1px solid rgba(108,63,197,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--od-space-md);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--od-shadow-xl); }

.od-pricing-intro { background: var(--od-paper-tinted); border-color: rgba(108,63,197,0.15); }
.od-pricing-workshop { background: var(--od-grad-hero); }
.od-pricing-workshop h3 { color: var(--od-white); }
.od-pricing-workshop p { color: rgba(255,255,255,0.72); }
.od-pricing-workshop .od-pricing-duration { color: rgba(255,255,255,0.6); }
.od-pricing-workshop .od-pricing-features li { color: rgba(255,255,255,0.8); }
.od-pricing-workshop .od-pricing-features i { color: var(--od-accent-light); }
.od-pricing-workshop .od-pricing-icon { color: var(--od-accent-light); }

.od-pricing-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--od-grad-primary);
  border-radius: var(--od-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--od-white);
  align-self: flex-start;
}
.od-pricing-icon { font-size: 2rem; color: var(--od-primary); }
.od-pricing-card h3 { color: var(--od-ink); }
.od-pricing-duration { font-size: 0.88rem; color: var(--od-ink-muted); display: flex; align-items: center; gap: 0.4rem; }
.od-pricing-duration i { color: var(--od-primary); }
.od-pricing-card > p { font-size: 0.9rem; }
.od-pricing-features { display: flex; flex-direction: column; gap: 0.5rem; }
.od-pricing-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--od-ink-muted); }
.od-pricing-features i { color: var(--od-sage); font-size: 0.8rem; }

.od-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--od-space-md);
}
.od-info-card {
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  padding: var(--od-space-lg);
  box-shadow: var(--od-shadow-sm);
  text-align: center;
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-info-card:hover { transform: translateY(-4px); box-shadow: var(--od-shadow-md); }
.od-info-card i { font-size: 1.8rem; color: var(--od-primary); margin-bottom: var(--od-space-md); display: block; }
.od-info-card h4 { color: var(--od-ink); margin-bottom: 0.5rem; }
.od-info-card p { font-size: 0.88rem; }

.od-cta-simple {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.od-cta-simple h2 { color: var(--od-ink); margin-bottom: var(--od-space-sm); }
.od-cta-simple p { margin-bottom: var(--od-space-lg); }


.od-community-bento {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--od-space-xl);
  align-items: center;
}
.od-community-main {
  border-radius: var(--od-radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--od-shadow-lg);
}
.od-community-main img { width: 100%; height: 100%; object-fit: cover; }
.od-community-side h2 { color: var(--od-ink); margin-bottom: var(--od-space-md); }
.od-community-side p { margin-bottom: var(--od-space-md); }

.od-community-activities { display: flex; flex-direction: column; gap: var(--od-space-xl); }
.od-activity-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--od-space-xl);
  align-items: center;
  background: var(--od-white);
  border-radius: var(--od-radius-xl);
  overflow: hidden;
  box-shadow: var(--od-shadow-md);
}
.od-activity-reverse { direction: rtl; }
.od-activity-reverse > * { direction: ltr; }
.od-activity-img { height: 320px; overflow: hidden; }
.od-activity-img img { width: 100%; height: 100%; object-fit: cover; }
.od-activity-content { padding: var(--od-space-xl); }
.od-activity-content h3 { color: var(--od-ink); margin-bottom: var(--od-space-md); }
.od-activity-content p { font-size: 0.95rem; }

.od-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--od-space-md);
}
.od-why-item {
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  padding: var(--od-space-lg);
  box-shadow: var(--od-shadow-sm);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-why-item:hover { transform: translateY(-4px); box-shadow: var(--od-shadow-lg); }
.od-why-item i { font-size: 1.6rem; color: var(--od-primary); margin-bottom: var(--od-space-md); display: block; }
.od-why-item h4 { color: var(--od-ink); margin-bottom: 0.5rem; }
.od-why-item p { font-size: 0.88rem; }

.od-join-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.od-join-cta h2 { color: var(--od-ink); margin-bottom: var(--od-space-sm); }
.od-join-cta p { margin-bottom: var(--od-space-lg); }


.od-contact-bento {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--od-space-xl);
  align-items: start;
}
.od-contact-info { background: var(--od-white); border-radius: var(--od-radius-xl); padding: var(--od-space-xl); box-shadow: var(--od-shadow-md); }
.od-contact-info h2 { color: var(--od-ink); margin-bottom: var(--od-space-lg); }
.od-contact-detail {
  display: flex;
  gap: var(--od-space-md);
  align-items: flex-start;
  padding: var(--od-space-md) 0;
  border-bottom: 1px solid rgba(108,63,197,0.08);
}
.od-contact-detail:last-child { border-bottom: none; }
.od-contact-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--od-paper-tinted);
  border-radius: var(--od-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--od-primary);
  font-size: 0.9rem;
}
.od-contact-detail strong { display: block; color: var(--od-ink); font-size: 0.85rem; margin-bottom: 0.25rem; }
.od-contact-detail p { font-size: 0.9rem; margin: 0; }
.od-contact-detail a { color: var(--od-primary); font-size: 0.9rem; }

.od-contact-form-wrap { background: var(--od-white); border-radius: var(--od-radius-xl); padding: var(--od-space-xl); box-shadow: var(--od-shadow-md); }
.od-contact-form-wrap h2 { color: var(--od-ink); margin-bottom: var(--od-space-lg); }

.od-contact-form { display: flex; flex-direction: column; gap: var(--od-space-md); }
.od-form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--od-space-md); }
.od-form-message { grid-column: span 1; }
.od-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.od-form-group label { font-size: 0.82rem; font-weight: 600; color: var(--od-ink-soft); letter-spacing: 0.03em; }
.od-form-group input,
.od-form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(108,63,197,0.15);
  border-radius: var(--od-radius-sm);
  font-size: 0.9rem;
  color: var(--od-ink);
  background: var(--od-paper);
  transition: border-color var(--od-transition), box-shadow var(--od-transition);
  resize: vertical;
}
.od-form-group input:focus,
.od-form-group textarea:focus {
  outline: none;
  border-color: var(--od-primary);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.12);
}
.od-form-bottom {
  display: flex;
  align-items: center;
  gap: var(--od-space-lg);
  flex-wrap: wrap;
}
.od-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--od-ink-muted);
  cursor: pointer;
  flex: 1;
}
.od-privacy-label input { margin-top: 2px; accent-color: var(--od-primary); width: 16px; height: 16px; }
.od-privacy-label a { color: var(--od-primary); text-decoration: underline; }

.od-directions-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--od-space-xl);
  align-items: start;
}
.od-map-wrap {
  border-radius: var(--od-radius-xl);
  overflow: hidden;
  box-shadow: var(--od-shadow-md);
}
.od-map-wrap iframe { display: block; }
.od-directions-info { display: flex; flex-direction: column; gap: var(--od-space-md); }
.od-direction-item {
  display: flex;
  gap: var(--od-space-md);
  align-items: flex-start;
  background: var(--od-white);
  border-radius: var(--od-radius-md);
  padding: var(--od-space-md);
  box-shadow: var(--od-shadow-xs);
  transition: box-shadow var(--od-transition);
}
.od-direction-item:hover { box-shadow: var(--od-shadow-md); }
.od-direction-item i { font-size: 1.1rem; color: var(--od-primary); margin-top: 2px; min-width: 20px; }
.od-direction-item strong { display: block; color: var(--od-ink); font-size: 0.88rem; margin-bottom: 0.25rem; }
.od-direction-item p { font-size: 0.85rem; margin: 0; }


.od-thanks-main {
  min-height: calc(100vh - var(--od-nav-h) - 200px);
  display: flex;
  align-items: center;
  padding: calc(var(--od-nav-h) + var(--od-space-2xl)) 0 var(--od-space-2xl);
}
.od-thanks-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--od-space-xl);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.od-quote-card {
  background: var(--od-grad-hero);
  border-radius: var(--od-radius-xl);
  padding: var(--od-space-xl);
  box-shadow: var(--od-shadow-xl);
}
.od-quote-icon { font-size: 2rem; color: var(--od-accent-light); margin-bottom: var(--od-space-md); }
.od-quote-card blockquote p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: var(--od-space-md);
}
.od-quote-card cite { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-style: normal; }
.od-thanks-content { text-align: center; }
.od-thanks-icon { font-size: 3rem; color: var(--od-sage); margin-bottom: var(--od-space-md); }
.od-thanks-content h1 { color: var(--od-ink); margin-bottom: var(--od-space-md); font-size: clamp(1.5rem, 4vw, 2.2rem); }
.od-thanks-content p { margin-bottom: var(--od-space-lg); }


.od-legal-main {
  padding: calc(var(--od-nav-h) + var(--od-space-2xl)) 0 var(--od-space-2xl);
}
.od-legal-wrap { max-width: 780px; margin: 0 auto; }
.od-legal-header { margin-bottom: var(--od-space-xl); }
.od-legal-header h1 { color: var(--od-ink); margin-bottom: var(--od-space-sm); }
.od-legal-date { font-size: 0.85rem; color: var(--od-ink-muted); margin-bottom: var(--od-space-md); }
.od-legal-header > p { font-size: 1rem; }
.od-legal-section { margin-bottom: var(--od-space-xl); }
.od-legal-section h2 { color: var(--od-ink); margin-bottom: var(--od-space-sm); font-size: 1.3rem; border-bottom: 2px solid rgba(108,63,197,0.1); padding-bottom: 0.5rem; }
.od-legal-section h3 { color: var(--od-ink-soft); margin: var(--od-space-md) 0 var(--od-space-sm); font-size: 1.05rem; }
.od-legal-section p { margin-bottom: var(--od-space-sm); font-size: 0.95rem; }
.od-legal-section code { background: var(--od-paper-warm); padding: 0.15em 0.4em; border-radius: 4px; font-size: 0.88em; color: var(--od-primary-dark); }
.od-legal-section a { color: var(--od-primary); text-decoration: underline; }


.od-footer {
  background: var(--od-ink);
  color: var(--od-white);
  padding-top: var(--od-space-2xl);
}
.od-footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--od-space-2xl);
  padding-bottom: var(--od-space-xl);
}
.od-footer-brand img { margin-bottom: var(--od-space-sm); }
.od-footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; max-width: 260px; }
.od-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--od-space-lg);
}
.od-footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.od-footer-col h5 { color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.od-footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--od-transition); }
.od-footer-col a:hover { color: var(--od-white); opacity: 1; }
.od-footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.od-footer-contact i { color: var(--od-primary-light); margin-top: 2px; min-width: 14px; }
.od-footer-contact a { color: rgba(255,255,255,0.65); }
.od-footer-contact a:hover { color: var(--od-white); opacity: 1; }
.od-footer-sep { height: 1px; background: rgba(255,255,255,0.08); }
.od-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--od-space-md) 0;
}
.od-footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.od-footer-legal { display: flex; gap: var(--od-space-md); }
.od-footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--od-transition); }
.od-footer-legal a:hover { color: var(--od-white); opacity: 1; }


.od-cookie-icon {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  width: 52px; height: 52px;
  background: var(--od-grad-primary);
  border-radius: var(--od-radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--od-white);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--od-shadow-primary);
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-cookie-icon:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(108,63,197,0.45); }

.od-cookie-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: var(--od-accent);
  border-radius: 50%;
  border: 2px solid var(--od-paper);
  display: none;
}
.od-cookie-badge.od-badge-visible { display: block; }

.od-cookie-panel {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 801;
  width: 320px;
  background: var(--od-white);
  border-radius: var(--od-radius-xl);
  box-shadow: var(--od-shadow-xl), 0 0 0 1px rgba(108,63,197,0.08);
  padding: var(--od-space-lg);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--od-transition-slow), opacity var(--od-transition-slow);
}
.od-cookie-panel.od-panel-open { transform: translateY(0); opacity: 1; pointer-events: all; }

.od-cookie-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--od-space-sm);
}
.od-cookie-panel-header h4 { color: var(--od-ink); font-size: 1rem; }
.od-cookie-panel-header button {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--od-ink-muted);
  font-size: 0.9rem;
  transition: background var(--od-transition);
}
.od-cookie-panel-header button:hover { background: var(--od-paper-warm); }

.od-cookie-intro { font-size: 0.82rem; color: var(--od-ink-muted); margin-bottom: var(--od-space-md); }

.od-cookie-toggles { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: var(--od-space-md); }
.od-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(108,63,197,0.06);
}
.od-cookie-row:last-child { border-bottom: none; }
.od-cookie-row strong { display: block; font-size: 0.85rem; color: var(--od-ink); }
.od-cookie-row span { font-size: 0.75rem; color: var(--od-ink-muted); }

.od-toggle { position: relative; display: inline-block; width: 40px; height: 22px; }
.od-toggle input { opacity: 0; width: 0; height: 0; }
.od-toggle span {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d1cdd8;
  border-radius: 22px;
  transition: background var(--od-transition);
}
.od-toggle span::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--od-transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.od-toggle input:checked + span { background: var(--od-primary); }
.od-toggle input:checked + span::before { transform: translateX(18px); }
.od-toggle-disabled { opacity: 0.6; pointer-events: none; }
.od-toggle-disabled span { background: var(--od-primary); }
.od-toggle-disabled span::before { transform: translateX(18px); }

.od-cookie-actions { display: flex; gap: 0.5rem; }
.od-btn-cookie-primary {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--od-grad-primary);
  color: var(--od-white);
  border-radius: var(--od-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform var(--od-transition), box-shadow var(--od-transition);
}
.od-btn-cookie-primary:hover { transform: translateY(-1px); box-shadow: var(--od-shadow-primary); }
.od-btn-cookie-secondary {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--od-paper-warm);
  color: var(--od-ink-soft);
  border-radius: var(--od-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--od-transition);
}
.od-btn-cookie-secondary:hover { background: var(--od-paper-tinted); }


.od-logo img { height: 38px; width: auto; }

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .od-bento-grid { grid-template-columns: 1fr 1fr; }
  .od-cell-large { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .od-cell-tall { grid-row: span 1; min-height: 200px; }
  .od-cell-wide { grid-column: span 2; }

  .od-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .od-info-grid { grid-template-columns: repeat(2, 1fr); }
  .od-values-grid { grid-template-columns: repeat(2, 1fr); }
  .od-why-grid { grid-template-columns: repeat(2, 1fr); }
  .od-steps-grid { grid-template-columns: 1fr; }
  .od-steps-grid::before { display: none; }
  .od-footer-links { grid-template-columns: repeat(2, 1fr); }
  .od-pricing-bento { grid-template-columns: 1fr; }
  .od-partners-bento { grid-template-columns: 1fr; }
  .od-partner-featured { grid-column: span 1; }
  .od-collab-banner { grid-template-columns: 1fr; }
  .od-collab-img { min-height: 240px; }
  .od-community-bento { grid-template-columns: 1fr; }
  .od-community-main { height: 320px; }
  .od-activity-card { grid-template-columns: 1fr; }
  .od-activity-reverse { direction: ltr; }
  .od-activity-img { height: 240px; }
  .od-directions-bento { grid-template-columns: 1fr; }
  .od-contact-bento { grid-template-columns: 1fr; }
  .od-form-row { grid-template-columns: 1fr 1fr; }
  .od-form-message { grid-column: span 2; }
  .od-thanks-wrap { grid-template-columns: 1fr; max-width: 540px; }
  .od-cta-bento { grid-template-columns: 1fr; }
  .od-cta-visual { min-height: 240px; }
  .od-footer-top { grid-template-columns: 1fr; gap: var(--od-space-xl); }
  .od-gallery-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .od-gallery-main { grid-column: span 2; grid-row: span 1; }
  .od-gallery-tall { grid-row: span 2; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --od-nav-h: 64px; }

  .od-nav-left, .od-nav-right { display: none; }
  .od-hamburger { display: flex; }
  .od-nav-inner { grid-template-columns: 1fr auto 1fr; }

  .od-hero-inner { grid-template-columns: 1fr; gap: var(--od-space-xl); padding: var(--od-space-xl) var(--od-space-md); }
  .od-hero-visual { max-width: 380px; margin: 0 auto; }
  .od-hero-actions { flex-direction: column; align-items: flex-start; }

  .od-bento-grid { grid-template-columns: 1fr; }
  .od-cell-large { grid-column: span 1; min-height: 260px; }
  .od-cell-wide { grid-column: span 1; }
  .od-cell-wide-inner { grid-template-columns: 1fr; }
  .od-cell-wide-img { width: 100%; height: 180px; }

  .od-features-grid { grid-template-columns: 1fr; }
  .od-feature-item:nth-child(odd) { border-right: none; }
  .od-feature-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(108,63,197,0.08); }
  .od-feature-item:last-child { border-bottom: none; }

  .od-badges-grid { grid-template-columns: 1fr; }
  .od-info-grid { grid-template-columns: 1fr; }
  .od-values-grid { grid-template-columns: 1fr; }
  .od-why-grid { grid-template-columns: 1fr; }

  .od-gallery-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .od-gallery-main { grid-column: span 2; }
  .od-gallery-tall { grid-row: span 1; }

  .od-form-row { grid-template-columns: 1fr; }
  .od-form-message { grid-column: span 1; }
  .od-form-bottom { flex-direction: column; align-items: stretch; }

  .od-footer-links { grid-template-columns: 1fr 1fr; }
  .od-footer-bottom { flex-direction: column; gap: var(--od-space-sm); text-align: center; }

  .od-cookie-panel { width: calc(100vw - 32px); right: 16px; }

  .od-section { padding: var(--od-space-xl) 0; }
  .od-section-header { margin-bottom: var(--od-space-lg); }

  .od-page-hero { padding: calc(var(--od-nav-h) + var(--od-space-xl)) 0 var(--od-space-xl); }

  .od-thanks-wrap { grid-template-columns: 1fr; }
  .od-thanks-main { padding: calc(var(--od-nav-h) + var(--od-space-xl)) 0 var(--od-space-xl); }
  .od-legal-main { padding: calc(var(--od-nav-h) + var(--od-space-xl)) 0 var(--od-space-xl); }
}

@media (max-width: 480px) {
  .od-footer-links { grid-template-columns: 1fr; }
  .od-hero-actions { gap: var(--od-space-sm); }
  .od-btn-primary, .od-btn-ghost { width: 100%; justify-content: center; }
  .od-gallery-bento { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .od-gallery-main { grid-column: span 1; }
  .od-gallery-tall { grid-row: span 1; }
}