/**
 * Modern CSS Reset
 * 
 * Minimal, sensible defaults for all brands.
 * Based on modern-normalize + custom additions.
 */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Root defaults */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: var(--font-body, system-ui, sans-serif);
  color: var(--color-body-text, #333);
  background-color: var(--bg-primary, #fff);
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form defaults */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Link defaults */
a {
  color: var(--color-link, inherit);
  text-decoration: none;
}

/* List defaults */
ol,
ul {
  list-style: none;
}

/* Table defaults */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Heading defaults */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: var(--leading-tight, 1.25);
  color: var(--color-heading-text, inherit);
}

/* Paragraph defaults */
p {
  line-height: var(--leading-normal, 1.5);
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/**
 * Shared Foundation Tokens
 * 
 * Universal design tokens used across ALL brands.
 * Brands override these with their own brand-specific tokens.
 */

:root {
  /* Universal Spacing Scale (8px base) */
  --space-0: 0;
  --space-1: 0.25rem;      /* 4px */
  --space-2: 0.5rem;       /* 8px */
  --space-3: 0.75rem;      /* 12px */
  --space-4: 1rem;         /* 16px */
  --space-5: 1.25rem;      /* 20px */
  --space-6: 1.5rem;       /* 24px */
  --space-8: 2rem;         /* 32px */
  --space-10: 2.5rem;      /* 40px */
  --space-12: 3rem;        /* 48px */
  --space-16: 4rem;        /* 64px */
  --space-20: 5rem;        /* 80px */
  --space-24: 6rem;        /* 96px */
  --space-32: 8rem;        /* 128px */
  
  /* Breakpoints (for reference in media queries) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  
  /* Container Max Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-fixed: 200;
  --z-modal: 1000;
  --z-tooltip: 2000;
  
  /* Transition Durations */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 350ms;
  
  /* Easing Functions */
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}
/**
 * Shared Utility Classes
 * 
 * Layout and helper utilities available to all brands.
 * Minimal, semantic utilities focused on layout patterns.
 */

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Gap Utilities */
.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-12 {
  gap: var(--space-12);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-narrow {
  max-width: var(--container-md);
}

.container-wide {
  max-width: 100%;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* Section Spacing */
.section {
  padding-top: var(--space-section-md, var(--space-16));
  padding-bottom: var(--space-section-md, var(--space-16));
}

.section-sm {
  padding-top: var(--space-section-sm, var(--space-12));
  padding-bottom: var(--space-section-sm, var(--space-12));
}

.section-lg {
  padding-top: var(--space-section-lg, var(--space-24));
  padding-bottom: var(--space-section-lg, var(--space-24));
}

/* Text Alignment */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Display Utilities */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

/* Screen Reader Only */
.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;
}

/* Responsive Display */
@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none;
  }
}
/**
 * Shared Responsive Breakpoints
 * 
 * All brands use these breakpoints unless there's a compelling reason to override.
 * Use in media queries: @media (min-width: 768px) { ... }
 */

:root {
  /* Mobile First Breakpoints */
  --breakpoint-sm: 640px;   /* Small devices (landscape phones) */
  --breakpoint-md: 768px;   /* Medium devices (tablets) */
  --breakpoint-lg: 1024px;  /* Large devices (desktops) */
  --breakpoint-xl: 1280px;  /* Extra large devices (large desktops) */
  --breakpoint-2xl: 1536px; /* 2X large devices (very large screens) */
}

/* Usage Example:
 * 
 * @media (min-width: 768px) {
 *   .component {
 *     // Tablet and up styles
 *   }
 * }
 * 
 * @media (min-width: 1024px) {
 *   .component {
 *     // Desktop and up styles
 *   }
 * }
 */
/**
 * Layout Components
 * 
 * Structural layout patterns for flex and grid.
 * Brands can override spacing and sizing via custom properties.
 * 
 * Replaces Webflow w-layout-* classes with semantic names.
 */

/* Block Container - Centered content container */
.layout-container {
  max-width: var(--container-lg, 940px);
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

/* Grid Layout */
.layout-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: var(--layout-gap, var(--space-4));
  grid-row-gap: var(--layout-gap, var(--space-4));
}

/* Horizontal Flex Layout */
.layout-flex-h {
  display: flex;
  flex-direction: row;
  align-items: var(--layout-align, flex-start);
  gap: var(--layout-gap, 0);
}

/* Vertical Flex Layout */
.layout-flex-v {
  display: flex;
  flex-direction: column;
  align-items: var(--layout-align, flex-start);
  gap: var(--layout-gap, 0);
}

/* Two Column Grid Layout */
.layout-two-col {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--layout-gap, var(--space-4));
}

/* Grid Cell */
.layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
  .layout-container {
    max-width: var(--container-md, 728px);
  }
  
  .layout-two-col {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .layout-container {
    max-width: none;
  }
}
/**
 * Button Component - Shared Structure
 * 
 * Provides button structure, behavior, and common patterns.
 * Brands define visual styling via CSS custom properties.
 * 
 * Component-first naming: .button (not .w-button or .btn)
 */

.button {
  /* Structure */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  
  /* Layout - brands can override via custom properties */
  padding: var(--button-padding, 0.75em 1.5em);
  
  /* Typography - brands control via custom properties */
  font-family: var(--button-font, inherit);
  font-size: var(--button-font-size, 1rem);
  font-weight: var(--button-font-weight, 600);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  
  /* Visual - brands control via custom properties */
  background-color: var(--button-bg, transparent);
  color: var(--button-color, inherit);
  border: var(--button-border-width, 0) solid var(--button-border-color, transparent);
  border-radius: var(--button-radius, 0);
  box-shadow: var(--button-shadow, none);
  
  /* Interaction */
  cursor: pointer;
  user-select: none;
  transition: all var(--duration-normal) var(--ease-in-out);
  
  /* Reset browser defaults */
  appearance: none;
}

/* Hover State */
.button:hover {
  background-color: var(--button-bg-hover, var(--button-bg));
  color: var(--button-color-hover, var(--button-color));
  border-color: var(--button-border-color-hover, var(--button-border-color));
  box-shadow: var(--button-shadow-hover, var(--button-shadow));
  transform: var(--button-hover-transform, none);
}

/* Active State */
.button:active {
  transform: var(--button-active-transform, none);
}

/* Focus State (Accessibility - always visible) */
.button:focus {
  outline: 2px solid var(--button-focus-color, currentColor);
  outline-offset: 2px;
}

.button:focus:not(:focus-visible) {
  outline: none;
}

.button:focus-visible {
  outline: 2px solid var(--button-focus-color, currentColor);
  outline-offset: 2px;
}

/* Disabled State */
.button:disabled,
.button[aria-disabled="true"] {
  opacity: var(--button-disabled-opacity, 0.5);
  cursor: not-allowed;
  pointer-events: none;
}

/* Button Variants - Structural differences only */
.button-primary {
  /* Brand defines colors via custom properties */
}

.button-secondary {
  /* Brand defines colors via custom properties */
}

.button-outline {
  /* Force transparent background, border-based */
  background-color: transparent;
  --button-border-width: 2px;
}

/* Button Sizes */
.button-small {
  --button-padding: 0.5em 1em;
  --button-font-size: 0.875rem;
}

.button-large {
  --button-padding: 1em 2em;
  --button-font-size: 1.125rem;
}

/* Full Width */
.button-full {
  display: flex;
  width: 100%;
}

/* Icon Buttons (square) */
.button-icon {
  --button-padding: 0.75em;
  aspect-ratio: 1;
}

/* Button with Icon + Text */
.button-with-icon {
  gap: var(--space-2);
}

.button-with-icon svg,
.button-with-icon img {
  width: 1.25em;
  height: 1.25em;
}

/* Loading State (optional structure) */
.button-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.button-loading::after {
  content: '';
  position: absolute;
  width: 1em;
  height: 1em;
  border: 2px solid var(--button-color, currentColor);
  border-radius: 50%;
  border-top-color: transparent;
  animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Form Components
 * 
 * Structural form patterns and behavior.
 * Brands define visual styling via custom properties.
 * 
 * Replaces Webflow w-form, w-input classes with semantic names.
 */

/* Form Container */
.form {
  margin: 0;
}

/* Form Group - Wraps label + input */
.form-group {
  margin-bottom: var(--form-group-spacing, var(--space-4));
}

/* Form Label */
.form-label {
  display: block;
  margin-bottom: var(--form-label-spacing, var(--space-2));
  font-weight: var(--form-label-weight, 500);
  color: var(--form-label-color, inherit);
}

/* Input Fields */
.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  padding: var(--form-input-padding, 0.5em 0.75em);
  font-family: var(--form-input-font, inherit);
  font-size: var(--form-input-font-size, 1rem);
  line-height: 1.5;
  color: var(--form-input-color, inherit);
  background-color: var(--form-input-bg, #ffffff);
  border: var(--form-input-border-width, 1px) solid var(--form-input-border-color, #cccccc);
  border-radius: var(--form-input-radius, 0);
  transition: border-color var(--duration-normal) var(--ease-in-out);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Input Focus State */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--form-input-focus-border-color, #3898ec);
  outline: 0;
  box-shadow: var(--form-input-focus-shadow, none);
}

/* Input Disabled State */
.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--form-input-disabled-bg, #f5f5f5);
}

/* Input Error State */
.form-input-error,
.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--form-input-error-color, #dc2626);
}

.form-input-error:focus {
  border-color: var(--form-input-error-color, #dc2626);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Error Message */
.form-error-message {
  display: none; /* Hidden by default, shown by JS on error */
  margin-top: var(--space-1);
  font-size: 0.875em;
  color: var(--form-input-error-color, #dc2626);
}

/* Success Message */
.form-success-message {
  display: none; /* Hidden by default, shown by JS on success */
  margin-top: var(--space-1);
  font-size: 0.875em;
  color: var(--form-input-success-color, #16a34a);
}

/* Checkbox */
.form-checkbox {
  display: block;
  margin-bottom: var(--form-checkbox-spacing, var(--space-2));
}

.form-checkbox-input {
  margin-right: var(--space-2);
  cursor: pointer;
}

.form-checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Custom Checkbox */
.form-checkbox-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.form-checkbox-custom input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-checkbox-custom-box {
  display: inline-block;
  width: var(--form-checkbox-size, 1.25em);
  height: var(--form-checkbox-size, 1.25em);
  margin-right: var(--space-2);
  border: 1px solid var(--form-checkbox-border-color, #ccc);
  border-radius: var(--form-checkbox-radius, 2px);
  background-color: var(--form-checkbox-bg, #ffffff);
  transition: all var(--duration-fast) var(--ease-in-out);
}

.form-checkbox-custom input[type="checkbox"]:checked ~ .form-checkbox-custom-box {
  background-color: var(--form-checkbox-checked-bg, #3898ec);
  border-color: var(--form-checkbox-checked-border, #3898ec);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white"><path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/></svg>');
  background-position: 50% 50%;
  background-size: 70%;
  background-repeat: no-repeat;
}

.form-checkbox-custom input[type="checkbox"]:focus ~ .form-checkbox-custom-box {
  outline: 2px solid var(--form-checkbox-focus-color, currentColor);
  outline-offset: 2px;
}

/* Radio Button */
.form-radio {
  display: block;
  margin-bottom: var(--form-radio-spacing, var(--space-2));
}

.form-radio-input {
  margin-right: var(--space-2);
  cursor: pointer;
}

.form-radio-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Custom Radio */
.form-radio-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.form-radio-custom input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-radio-custom-circle {
  display: inline-block;
  width: var(--form-radio-size, 1.25em);
  height: var(--form-radio-size, 1.25em);
  margin-right: var(--space-2);
  border: 1px solid var(--form-radio-border-color, #ccc);
  border-radius: 50%;
  background-color: var(--form-radio-bg, #ffffff);
  transition: all var(--duration-fast) var(--ease-in-out);
}

.form-radio-custom input[type="radio"]:checked ~ .form-radio-custom-circle {
  background-color: var(--form-radio-checked-bg, #3898ec);
  border-color: var(--form-radio-checked-border, #3898ec);
  box-shadow: inset 0 0 0 3px white;
}

.form-radio-custom input[type="radio"]:focus ~ .form-radio-custom-circle {
  outline: 2px solid var(--form-radio-focus-color, currentColor);
  outline-offset: 2px;
}

/* Select Dropdown */
.form-select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor"><path d="M8 11L3 6h10l-5 5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

/* File Input */
.form-file {
  display: block;
  width: 100%;
}

.form-file-input {
  display: block;
  width: 100%;
}

/* Form Actions (buttons group) */
.form-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Mobile Adjustments */
@media screen and (max-width: 479px) {
  .form-input,
  .form-textarea,
  .form-select {
    /* Prevent iOS zoom on focus */
    font-size: max(16px, var(--form-input-font-size, 1rem));
  }
}
:root {
  --cc-black: #1a1a1a;
  --cc-white: #ffffff;
  --cc-gray-50: #fafafa;
  --cc-gray-200: #e5e5e5;
  --cc-gray-300: #d0d0d0;
  --cc-gray-500: #666666;
  --cc-gray-600: #555555;
  --cc-text-primary: var(--cc-black);
  --cc-text-secondary: var(--cc-gray-500);
  --cc-border: var(--cc-gray-200);
  --cc-border-dark: var(--cc-gray-300);
  --cc-bg-primary: var(--cc-white);
  --cc-bg-secondary: var(--cc-gray-50);
}
:root {
  --cc-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --cc-weight-normal: 400;
  --cc-weight-medium: 500;
  --cc-weight-semibold: 600;
  --cc-text-xs: 0.875rem;
  --cc-text-sm: 0.9375rem;
  --cc-text-base: 1rem;
  --cc-text-lg: 1.0625rem;
  --cc-text-xl: 1.125rem;
  --cc-text-2xl: 1.25rem;
  --cc-text-3xl: 1.75rem;
  --cc-text-4xl: 2rem;
  --cc-text-5xl: 2.5rem;
  --cc-leading-tight: 1.2;
  --cc-leading-normal: 1.6;
}
body {
  font-family: var(--cc-font-sans);
  font-size: var(--cc-text-base);
  line-height: var(--cc-leading-normal);
  color: var(--cc-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--cc-weight-medium);
  line-height: var(--cc-leading-tight);
}
h1 { font-size: var(--cc-text-5xl); }
h2 { font-size: var(--cc-text-4xl); }
h3 { font-size: var(--cc-text-2xl); font-weight: var(--cc-weight-semibold); }
:root {
  --cc-space-2: 0.5rem;
  --cc-space-3: 0.75rem;
  --cc-space-4: 1rem;
  --cc-space-5: 1.5rem;
  --cc-space-6: 2rem;
  --cc-space-8: 3rem;
  --cc-space-10: 4rem;
  --cc-space-12: 5rem;
  --cc-container-narrow: 800px;
  --cc-container-wide: 1200px;
  --cc-radius-md: 6px;
  --cc-radius-lg: 8px;
}
:root {
  --button-bg: var(--cc-black);
  --button-color: var(--cc-white);
  --button-padding: var(--cc-space-3) var(--cc-space-5);
  --button-radius: var(--cc-radius-md);
  --button-font: var(--cc-font-sans);
  --button-font-size: var(--cc-text-sm);
  --button-font-weight: var(--cc-weight-medium);
  --button-border: 1px solid var(--cc-black);
}
.button { transition: all 0.2s ease; }
.button:hover { background: #333; border-color: #333; }
:root {
  --form-input-border: var(--cc-border-dark);
  --form-input-border-focus: var(--cc-black);
  --form-input-padding: var(--cc-space-3);
  --form-input-radius: var(--cc-radius-md);
  --form-input-font-size: var(--cc-text-base);
  --form-label-font-size: var(--cc-text-sm);
  --form-label-font-weight: var(--cc-weight-medium);
}
.form-group { margin-bottom: var(--cc-space-5); }
label { display: block; margin-bottom: var(--cc-space-2); color: var(--cc-text-primary); }
input, select, textarea { width: 100%; font-family: var(--cc-font-sans); transition: border-color 0.2s ease; }
textarea { min-height: 120px; resize: vertical; }
/* Combined Curiosity - Custom Layouts */

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container { 
  max-width: var(--cc-container-wide); 
  margin: 0 auto; 
  padding: 0 var(--cc-space-6); 
}

.container--narrow { 
  max-width: var(--cc-container-narrow); 
}

section { 
  padding: var(--cc-space-12) 0; 
}

/* ============================================
   HEADER
   ============================================ */

.header { 
  position: sticky; 
  top: 0; 
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(10px); 
  border-bottom: 1px solid var(--cc-border); 
  padding: var(--cc-space-4) 0; 
  z-index: 1000; 
}

.header-container { 
  max-width: var(--cc-container-wide); 
  margin: 0 auto; 
  padding: 0 var(--cc-space-6); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.logo { 
  display: block;
  line-height: 0;
}

.logo img {
  height: 56px;
  display: block;
}

.nav { 
  display: flex; 
  gap: var(--cc-space-6); 
  align-items: center; 
}

.nav a { 
  font-size: var(--cc-text-sm); 
  font-weight: var(--cc-weight-medium); 
  color: var(--cc-text-primary); 
  text-decoration: none; 
  transition: opacity 0.2s ease; 
}

.nav a:hover { 
  opacity: 0.7; 
}

/* ============================================
   HERO
   ============================================ */

.hero { 
  padding: var(--cc-space-12) 0 var(--cc-space-10); 
  text-align: center; 
}

.hero h1 { 
  max-width: 800px; 
  margin: 0 auto var(--cc-space-5); 
}

.hero-supporting { 
  font-size: var(--cc-text-xl); 
  color: var(--cc-text-secondary); 
  max-width: 700px; 
  margin: 0 auto var(--cc-space-8); 
  line-height: var(--cc-leading-normal); 
}

/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio { 
  background: var(--cc-bg-secondary); 
  padding: var(--cc-space-12) 0; 
}

.portfolio h2 { 
  text-align: center; 
  margin-bottom: var(--cc-space-5); 
}

.portfolio-intro { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto var(--cc-space-8); 
  font-size: var(--cc-text-lg); 
  color: var(--cc-text-secondary); 
}

.brand-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: var(--cc-space-6); 
  margin-top: var(--cc-space-8); 
}

.brand-card { 
  background: var(--cc-bg-primary); 
  border: 1px solid var(--cc-border); 
  border-radius: var(--cc-radius-lg); 
  padding: var(--cc-space-6); 
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.brand-card:hover { 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
  border-color: var(--cc-border-dark); 
}

.brand-logo { 
  height: 80px; 
  margin-bottom: var(--cc-space-5); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.brand-logo img {
  width: 200px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* Large logos (Ukulele Blast, Uke for Kids) - bigger than others */
.brand-logo--large {
  height: 100px;
}

.brand-logo--large img {
  width: 280px;
  height: auto;
  max-height: 100px;
}

.brand-category { 
  font-size: var(--cc-text-xs); 
  color: var(--cc-text-secondary); 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  margin-bottom: var(--cc-space-3); 
  font-weight: var(--cc-weight-medium); 
  min-height: 2.5em; 
  text-align: center; 
}

.brand-description { 
  color: var(--cc-gray-600); 
  font-size: var(--cc-text-sm); 
  line-height: var(--cc-leading-normal); 
}

/* ============================================
   CONTACT
   ============================================ */

.contact { 
  padding: var(--cc-space-12) 0; 
}

.contact h2 { 
  text-align: center; 
  margin-bottom: var(--cc-space-5); 
}

.contact-intro { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto var(--cc-space-8); 
  font-size: var(--cc-text-lg); 
  color: var(--cc-text-secondary); 
}

.form-container { 
  max-width: 600px; 
  margin: 0 auto; 
}

.form-container .button {
  width: 100%;
}

.form-note { 
  font-size: var(--cc-text-xs); 
  color: var(--cc-text-secondary); 
  margin-top: var(--cc-space-5); 
  text-align: center; 
}

/* ============================================
   FOOTER
   ============================================ */

.footer { 
  background: var(--cc-bg-secondary); 
  border-top: 1px solid var(--cc-border); 
  padding: var(--cc-space-8) 0; 
}

.footer-container { 
  max-width: var(--cc-container-wide); 
  margin: 0 auto; 
  padding: 0 var(--cc-space-6); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: var(--cc-space-5); 
}

.footer-copyright { 
  font-size: var(--cc-text-xs); 
  color: var(--cc-text-secondary); 
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright img {
  height: 24px;
  display: block;
}

.footer-links { 
  display: flex; 
  gap: var(--cc-space-6); 
  align-items: center; 
}

.footer-links a { 
  font-size: var(--cc-text-sm); 
  color: var(--cc-text-primary); 
  text-decoration: none; 
  transition: opacity 0.2s ease; 
}

.footer-links a:hover { 
  opacity: 0.7; 
}

.footer-note { 
  font-size: var(--cc-text-xs); 
  color: var(--cc-text-secondary); 
  max-width: 600px; 
  margin-top: var(--cc-space-4); 
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  section { 
    padding: var(--cc-space-8) 0; 
  }

  .hero { 
    padding: var(--cc-space-10) 0 var(--cc-space-8); 
  }

  .hero h1 { 
    font-size: var(--cc-text-4xl); 
  }

  .hero-supporting { 
    font-size: var(--cc-text-base); 
  }

  .nav { 
    gap: var(--cc-space-5); 
  }

  .brand-grid { 
    grid-template-columns: 1fr; 
    gap: var(--cc-space-5); 
  }

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

  .footer-copyright {
    justify-content: center;
  }

  .footer-links { 
    flex-direction: column; 
    gap: var(--cc-space-4); 
  }
}

/* ============================================
   Careers Page Styles
   ============================================ */

.hero--careers {
  padding: var(--cc-space-10) 0 var(--cc-space-8);
}

.careers-content {
  padding: var(--cc-space-10) 0;
  background-color: var(--cc-bg-primary);
}

.careers-application {
  padding: var(--cc-space-10) 0;
  background-color: var(--cc-bg-secondary);
}

.job-section {
  margin-bottom: var(--cc-space-8);
}

.job-section h2 {
  margin-bottom: var(--cc-space-4);
  color: var(--cc-black);
}

.job-section p {
  margin-bottom: var(--cc-space-4);
  line-height: 1.7;
}

.job-section p:last-child {
  margin-bottom: 0;
}

.job-section ul,
.job-section ol {
  margin-left: var(--cc-space-6);
  margin-bottom: var(--cc-space-4);
  padding-left: var(--cc-space-5);
}

.job-section ul {
  list-style: disc;
}

.job-section ol {
  list-style: decimal;
}

.job-section li {
  margin-bottom: var(--cc-space-3);
  line-height: 1.7;
}

.job-section li:last-child {
  margin-bottom: 0;
}

.careers-application h2 {
  margin-bottom: var(--cc-space-6);
}

.application-intro {
  text-align: left;
  margin-bottom: var(--cc-space-8);
  color: var(--cc-text-secondary);
  font-size: var(--cc-text-base);
  line-height: 1.6;
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--cc-space-5);
  margin-bottom: 0;
}

.form-help {
  margin-top: var(--cc-space-2);
  font-size: var(--cc-text-sm);
  color: var(--cc-text-secondary);
}

.required {
  color: #d32f2f;
}

/* Responsive form row */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
