.elementor-kit-7{--e-global-color-primary:#3D0A80;--e-global-color-secondary:#7A6A90;--e-global-color-text:#1E1030;--e-global-color-accent:#3D0A80;--e-global-color-9b958e9:#220249ED;--e-global-color-90b0b32:#220249ED;--e-global-color-c450772:#E07B39;--e-global-color-a6d3f7d:#C96928;--e-global-color-5a20da4:#220249;--e-global-color-377fa46:#FFFFFF;--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-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);}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.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 *//* ============================================================
   ORCA Summit 2026 — Landing Page Styles
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #220249;
  --dark-2:     #2d0560;
  --primary:    #3d0a80;
  --accent:     #e07b39;
  --accent-h:   #c96928;
  --light:      #f4f0fa;
  --white:      #ffffff;
  --text:       #1e1030;
  --text-muted: #7a6a90;
  --border:     rgba(255,255,255,0.12);

  --font-body:    'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;

  --container: 1160px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ---- Section base ---- */
.section { padding: 80px 0; }

.section-light { background: var(--light); color: var(--text); }
.section-dark  { background: var(--dark);  color: var(--white); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-dark .section-title { color: var(--white); }
.section-light .section-title { color: var(--dark); }

.title-accent { color: var(--accent); }

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 640px;
}
.section-dark .section-intro { color: rgba(255,255,255,0.65); }

/* ---- Link ---- */
.link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}
.link:hover { text-decoration-color: var(--accent); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(34, 2, 73, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-orca   { color: var(--accent); }
.logo-sep    { color: rgba(255,255,255,0.3); margin: 0 4px; }
.logo-summit { color: var(--white); }
.logo-year   { color: rgba(255,255,255,0.4); font-size: 13px; margin-left: 4px; font-weight: 600; }

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: url('../../assets/images/orca-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  padding: 80px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #220249ed 0%, rgba(61, 10, 128, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  /* margin-bottom: 16px; */
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-location {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-description {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-text {
  max-width: 820px;
  margin-bottom: 48px;
}
.about-text p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.about-text p:last-child { margin-bottom: 0; }

.about-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.about-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-block h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-block ul {
  padding-left: 20px;
}

.about-block ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.about-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   PROGRAMME
   ============================================================ */
.pdf-viewer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.pdf-frame {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.programme-download {
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   FORMS (Submit Abstract + Registration)
   ============================================================ */
.form-intro { max-width: 820px; margin-bottom: 36px; }
.form-intro p { font-size: 16px; margin-bottom: 16px; }

.form-intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.form-intro-cols h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.form-intro-cols ul {
  padding-left: 18px;
}
.form-intro-cols ul li { font-size: 15px; margin-bottom: 6px; }

.section-dark .form-intro-cols h4 { color: var(--accent); }

.google-form-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  margin-bottom: 32px;
}

.google-form {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}

.docs-notice {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.section-light .docs-notice {
  background: var(--white);
  border-color: #e0e6ef;
  box-shadow: var(--shadow);
}

.docs-notice h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.docs-notice p { font-size: 15px; margin-bottom: 12px; line-height: 1.6; }
.docs-notice p:last-child { margin-bottom: 0; }

.consent-text {
  font-size: 14px !important;
  color: rgba(255,255,255,0.55) !important;
  font-style: italic;
}

.section-light .consent-text { color: var(--text-muted) !important; }

/* ============================================================
   SPEAKERS
   ============================================================ */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.speaker-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.placeholder-photo {
  background: linear-gradient(135deg, #d0d8e4 0%, #b8c4d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-photo::after {
  content: '';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 12px rgba(255,255,255,0.15);
}

.speaker-info {
  padding: 20px;
}

.speaker-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.speaker-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}

.speaker-org  { font-size: 14px; color: var(--text-muted); margin-bottom: 2px; }
.speaker-country { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   CHARITABLE RUN
   ============================================================ */
.run-content {
  max-width: 640px;
  margin-bottom: 40px;
}
.run-content p { font-size: 16px; margin-bottom: 14px; color: rgba(255,255,255,0.85); }

.run-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.placeholder-banner {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-lg);
}

.placeholder-label {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.placeholder-label span { font-size: 13px; opacity: 0.6; }

/* ============================================================
   SUPPORTERS
   ============================================================ */
.supporters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
}

.supporter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.supporter-logo {
  border-radius: var(--radius);
}

.placeholder-logo {
  background: linear-gradient(135deg, #e4eaf2 0%, #cdd6e3 100%);
  border: 2px dashed #b8c4d4;
}

.supporter-item:nth-child(1) .placeholder-logo { width: 180px; height: 80px; }
.supporter-item:nth-child(2) .placeholder-logo { width: 140px; height: 100px; }
.supporter-item:nth-child(3) .placeholder-logo { width: 200px; height: 70px; }
.supporter-item:nth-child(4) .placeholder-logo { width: 160px; height: 90px; }

.supporter-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   CONFERENCE DOCUMENTS
   ============================================================ */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.doc-group {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.doc-group h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.doc-list { list-style: none; padding: 0; }

.doc-list li { margin-bottom: 10px; }

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.doc-link:hover { color: var(--accent); }
.doc-link::before {
  content: '↓';
  font-size: 13px;
  color: var(--accent);
  opacity: 0.7;
}

.placeholder-link { opacity: 0.5; cursor: default; }
.placeholder-link:hover { color: rgba(255,255,255,0.8); }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: rgba(224,123,57,0.2);
  color: var(--accent);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #160131;
  color: rgba(255,255,255,0.45);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 14px; }

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(7, 15, 24, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-blocks { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .documents-grid { grid-template-columns: 1fr; }

  .main-nav a { font-size: 13px; padding: 6px 8px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding: 60px 0; }

  /* Mobile nav */
  .burger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13,27,42,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; font-size: 15px; }

  .hero { min-height: 100svh; background-attachment: scroll; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }

  .form-intro-cols { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .cookie-banner { padding: 14px 16px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-inner p { min-width: 0; font-size: 13px; }
  .cookie-buttons { width: 100%; display: flex; gap: 8px; }
  .cookie-buttons .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .supporters-grid { flex-direction: column; align-items: center; }
  .supporter-item .placeholder-logo { width: 200px !important; height: 80px !important; }

  .google-form { height: 900px; }
}/* End custom CSS */