.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */Now let me create a comprehensive, modern, site-wide CSS that will work across all sections:
Action: file_editor create /app/kayaking-severn-website/GLOBAL-SITE-STYLES.css --file-text "/* ============================================
   KAYAKING THE SEVERN - GLOBAL SITE STYLES
   Version: 2.0 - Compact & Premium Edition
   ============================================ */

/* 
   USAGE: Add this <style> block to your Elementor site's 
   Custom CSS area, or at the top of your combined HTML file.
   
   This stylesheet targets ALL sections and creates a cohesive,
   compact, mobile-friendly, premium design system.
*/

<style>
/* =====================================
   1. FOUNDATION & RESET
   ===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Spacing scale - compact edition */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 30px;
  --space-xl: 40px;
  --space-2xl: 50px;
  
  /* Colors - brand consistency */
  --primary: #1BA89D;
  --primary-dark: #158f85;
  --secondary: #667eea;
  --accent: #f093fb;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  
  /* Neutrals */
  --dark: #1a1f2e;
  --dark-soft: #2d3748;
  --light: #ffffff;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-500: #a0aec0;
  --gray-700: #4a5568;
  
  /* Typography scale */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Georgia', serif;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  
  /* Animation */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

/* =====================================
   2. TYPOGRAPHY - RESPONSIVE & COMPACT
   ===================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: inherit;
}

h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: var(--space-sm);
}

p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  color: inherit;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* =====================================
   3. LAYOUT - COMPACT SECTIONS
   ===================================== */

/* Universal section spacing */
section,
[class*=\"section\"],
.container,
[class*=\"container\"] {
  padding: var(--space-xl) var(--space-md) !important;
}

/* Content wrappers */
.content-wrapper,
[class*=\"wrapper\"] {
  max-width: 1200px;
  margin: 0 auto;
}

/* Reduce vertical spacing between sections */
section + section,
[class*=\"section\"] + [class*=\"section\"] {
  margin-top: 0 !important;
}

/* =====================================
   4. GRIDS - RESPONSIVE & COMPACT
   ===================================== */

/* Universal grid spacing */
[class*=\"grid\"],
.pricing-grid,
.stats-grid,
.content-grid {
  display: grid;
  gap: var(--space-md) !important;
  margin-bottom: var(--space-xl) !important;
}

/* Standard 3-column grid */
.pricing-grid,
[class*=\"pricing-grid\"] {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: var(--space-md) !important;
}

/* 4-column grid (for smaller items) */
[class*=\"onetime-grid\"],
.onetime-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  gap: var(--space-sm) !important;
}

/* =====================================
   5. CARDS - COMPACT & POLISHED
   ===================================== */

/* Universal card styling */
[class*=\"card\"],
.pricing-card,
.update-item,
.stat-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) !important;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

[class*=\"card\"]:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Card titles */
[class*=\"card-title\"],
.card-title {
  font-size: clamp(20px, 3vw, 24px) !important;
  margin-bottom: var(--space-sm) !important;
}

/* Card subtitles */
[class*=\"card-subtitle\"],
.card-subtitle {
  font-size: 14px !important;
  margin-bottom: var(--space-md) !important;
  opacity: 0.8;
}

/* Card icons */
[class*=\"card-icon\"],
.card-icon {
  width: 50px !important;
  height: 50px !important;
  margin-bottom: var(--space-md) !important;
}

/* =====================================
   6. BUTTONS - MODERN & ACCESSIBLE
   ===================================== */

button,
[class*=\"btn\"],
.card-cta,
.cta-btn,
[type=\"button\"],
[type=\"submit\"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  background: var(--primary);
  color: var(--light);
  min-height: 44px; /* Touch target */
}

button:hover,
[class*=\"btn\"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--primary-dark);
}

button:active,
[class*=\"btn\"]:active {
  transform: translateY(0);
}

/* Secondary buttons */
.btn-secondary,
[class*=\"btn-secondary\"] {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
}

/* =====================================
   7. HERO SECTIONS - COMPACT
   ===================================== */

.hero,
[class*=\"hero\"] {
  text-align: center;
  margin-bottom: var(--space-xl) !important;
  padding: var(--space-2xl) var(--space-md) !important;
}

.hero h1,
[class*=\"hero\"] h1 {
  font-size: clamp(32px, 6vw, 52px) !important;
  margin-bottom: var(--space-md) !important;
}

.hero p,
[class*=\"hero\"] p {
  font-size: clamp(16px, 2.5vw, 20px) !important;
  max-width: 700px;
  margin: 0 auto var(--space-lg) !important;
}

/* Hero stats */
.hero-stats,
[class*=\"stats\"] {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl) !important;
  flex-wrap: wrap;
}

.stat,
[class*=\"stat-\"] {
  text-align: center;
  min-width: 100px;
}

.stat-number,
[class*=\"stat-number\"] {
  font-size: clamp(36px, 5vw, 48px) !important;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs) !important;
}

.stat-label,
[class*=\"stat-label\"] {
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* =====================================
   8. LISTS & FEATURES
   ===================================== */

ul[class*=\"features\"],
ul[class*=\"list\"],
.card-features {
  list-style: none;
  padding: 0 !important;
  margin-bottom: var(--space-md) !important;
}

ul[class*=\"features\"] li,
.card-features li {
  padding: var(--space-sm) 0 !important;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 15px !important;
}

/* Checkmarks */
ul[class*=\"features\"] li::before,
.card-features li::before {
  content: '✓';
  width: 22px !important;
  height: 22px !important;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================================
   9. BADGES & LABELS
   ===================================== */

[class*=\"badge\"],
.card-badge {
  display: inline-block;
  padding: 6px 14px !important;
  font-size: 12px !important;
  font-weight: 700;
  border-radius: 20px;
  background: var(--primary);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success { background: var(--success); }
.badge-danger { background: var(--danger); }
.badge-warning { background: var(--warning); }

/* =====================================
   10. IMAGES & MEDIA
   ===================================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[class*=\"image-wrapper\"],
[class*=\"img-wrapper\"] {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Video embeds */
iframe,
video {
  max-width: 100%;
  border-radius: var(--radius-md);
}

/* =====================================
   11. FOOTER - COMPACT
   ===================================== */

footer,
[class*=\"footer\"] {
  padding: var(--space-2xl) var(--space-md) var(--space-xl) !important;
  background: var(--dark);
  color: var(--light);
}

[class*=\"footer-main\"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl) !important;
  margin-bottom: var(--space-xl) !important;
  padding-bottom: var(--space-xl) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary);
}

/* =====================================
   12. GLASSMORPHISM ELEMENTS
   ===================================== */

[class*=\"glass\"],
.pricing-card[style*=\"backdrop-filter\"],
[style*=\"backdrop-filter: blur\"] {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* =====================================
   13. SOCIAL ICONS - COMPACT
   ===================================== */

[class*=\"social\"],
.social-links {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

[class*=\"social\"] a,
.social-link {
  width: 40px !important;
  height: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

[class*=\"social\"] a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* =====================================
   14. TABLES - RESPONSIVE
   ===================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl);
}

th, td {
  padding: var(--space-md) !important;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

th {
  font-weight: 700;
  background: var(--gray-100);
}

/* =====================================
   15. ANIMATIONS & EFFECTS
   ===================================== */

/* Smooth fade in for content */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  animation: fadeIn 0.6s ease-out;
}

/* Pulse for important elements */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* =====================================
   16. UTILITY CLASSES
   ===================================== */

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }

.mt-sm { margin-top: var(--space-sm) !important; }
.mt-md { margin-top: var(--space-md) !important; }
.mt-lg { margin-top: var(--space-lg) !important; }
.mt-xl { margin-top: var(--space-xl) !important; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* =====================================
   17. MOBILE OPTIMIZATION (< 768px)
   ===================================== */

@media (max-width: 768px) {
  /* Tighter spacing on mobile */
  section,
  [class*=\"section\"],
  .container {
    padding: var(--space-lg) var(--space-sm) !important;
  }
  
  .hero,
  [class*=\"hero\"] {
    padding: var(--space-xl) var(--space-sm) !important;
    margin-bottom: var(--space-lg) !important;
  }
  
  /* Typography adjustments */
  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  p { font-size: 15px !important; }
  
  /* Single column grids */
  [class*=\"grid\"],
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-sm) !important;
  }
  
  /* Compact cards */
  [class*=\"card\"] {
    padding: var(--space-md) var(--space-sm) !important;
  }
  
  /* Smaller buttons */
  button,
  [class*=\"btn\"] {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }
  
  /* Stack hero stats vertically */
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md) !important;
  }
  
  /* Footer single column */
  [class*=\"footer-main\"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }
  
  /* Tables scroll horizontally */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* =====================================
   18. EXTRA SMALL MOBILE (< 480px)
   ===================================== */

@media (max-width: 480px) {
  section,
  [class*=\"section\"] {
    padding: var(--space-md) var(--space-xs) !important;
  }
  
  h1 { font-size: 24px !important; }
  h2 { font-size: 20px !important; }
  
  [class*=\"grid\"] {
    gap: var(--space-xs) !important;
  }
  
  button,
  [class*=\"btn\"] {
    width: 100%;
    padding: 12px 20px !important;
  }
}

/* =====================================
   19. PRINT STYLES
   ===================================== */

@media print {
  * {
    background: white !important;
    color: black !important;
  }
  
  nav,
  footer,
  [class*=\"cta\"],
  button {
    display: none !important;
  }
}

/* =====================================
   20. ACCESSIBILITY IMPROVEMENTS
   ===================================== */

/* Focus states for keyboard navigation */
a:focus,
button:focus,
[tabindex]:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================
   END OF GLOBAL STYLES
   ===================================== */

</style>
"
Observation: Create successful: /app/kayaking-severn-website/GLOBAL-SITE-STYLES.css/* End custom CSS */