/* ----- Variables ----- */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f7f9;
  --text: #0c2d48;
  --text-muted: #5c6b7a;
  --ocean-900: #0c2d48;
  --ocean-800: #145374;
  --ocean-700: #1a5f7a;
  --teal-600: #0c6b73;
  --teal-500: #0f7a82;
  --teal-400: #14919b;
  --accent: #0c6b73;
  --accent-hover: #0a5a61;
  --border: #e2e8f0;
  --radius: 6px;
  --radius-lg: 10px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.01rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
  --max-width: 72rem;
  --shadow-sm: 0 1px 3px rgba(12, 45, 72, 0.06);
  --shadow-md: 0 4px 12px rgba(12, 45, 72, 0.08);
  --shadow-hover: 0 8px 24px rgba(12, 45, 72, 0.12);
}

/* ----- Reset & base ----- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* ----- Layout ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  box-sizing: border-box;
  gap: var(--space-lg);
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transform: translateX(-20%);
}

.nav-right {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: var(--space-lg);
  justify-content: flex-start;
}

.logo-img {
  height: 126px;
  width: auto;
  max-height: 126px;
  object-fit: contain;
  object-position: left center;
}

.nav.container {
  padding-left: 0.1rem;
}

/* Home page: wider logo (same max-height so band doesn't grow) */
.page-home .logo-img {
  height: 126px;
  width: auto;
  max-width: 100%;
  max-height: 126px;
}

/* Home page header: strong left shift + larger logo */
.page-home .nav.container {
  padding-left: 0.1rem;
}

.page-home .logo {
  transform: translateX(-20%);
}

@media (max-width: 768px) {
  .nav {
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    padding: var(--space-xs) 0;
  }

  /* Keep brand logo visible on mobile (desktop uses left shift) */
  .logo,
  .page-home .logo {
    transform: translateX(-20%);
  }

  .logo-img {
    height: 105px;
    max-height: 105px;
  }

  .page-home .logo-img {
    height: 105px;
    width: auto;
    max-height: 105px;
  }

  .page-home .nav.container {
    padding-left: 0.1rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-right: var(--space-xs);
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  overflow: visible;
  font-size: 0.8rem;
}

.nav-links a {
  font-weight: 500;
  font-size: inherit;
  color: var(--text-muted);
  padding: var(--space-sm) 0.75rem;
  margin: calc(-1 * var(--space-sm)) 0;
  border-radius: var(--radius);
  transition: color 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 769px) {
  /* Fluid logo offset: adapts between laptop and large desktop widths */
  .logo,
  .page-home .logo {
    transform: translateX(clamp(-160%, calc(152% - 16vw), -20%));
  }

  /* Rebalance center nav relative to left logo and right language control */
  .nav-links {
    transform: translateX(-7.4rem);
  }
}

/* Large desktop: force logo far left (~4 logo widths) */
@media (min-width: 1700px) {
  .logo,
  .page-home .logo {
    transform: translateX(-175%);
  }
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
}

/* Services dropdown (desktop) */
.nav-item-dropdown {
  position: relative;
  overflow: visible;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: inherit;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: var(--space-sm) var(--space-md);
  margin: calc(-1 * var(--space-sm)) 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
  outline: none;
}

.nav-dropdown-trigger[aria-expanded="true"] {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
}

.nav-dropdown-trigger::after {
  content: none;
}

.nav-item-dropdown .nav-dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 12rem;
  padding: var(--space-xs);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 200;
}

.nav-item-dropdown .nav-dropdown[hidden] {
  display: none !important;
}

.nav-item-dropdown .nav-dropdown:not([hidden]) {
  display: block;
}

.nav-item-dropdown .nav-dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-item-dropdown .nav-dropdown a:hover,
.nav-item-dropdown .nav-dropdown a:focus {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230c2d48'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h16M4 12h16M4 18h16'/%3E%3C/svg%3E") center no-repeat;
  background-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.nav-toggle[aria-expanded="true"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230c2d48'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-right {
    justify-content: flex-end;
    gap: var(--space-sm);
  }
  .nav-lang {
    order: 1;
    margin-left: 0;
    margin-right: var(--space-xs);
  }
  .nav-toggle {
    order: 2;
    margin-left: 0;
    margin-right: var(--space-xs);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: var(--space-md);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .nav-links.open {
    max-height: 38rem;
    opacity: 1;
  }
  .nav-links a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    border-radius: 6px;
    margin: 0;
  }
  .nav-links a:hover,
  .nav-links a:focus {
    background: var(--bg-alt);
  }
  /* Services dropdown (mobile): expand inline */
  .nav-item-dropdown {
    display: block;
  }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    margin: 0;
    border-radius: 6px;
    text-align: left;
  }
  .nav-item-dropdown .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-alt);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-item-dropdown .nav-dropdown[hidden] {
    display: block;
    max-height: 0;
  }
  .nav-item-dropdown.open .nav-dropdown {
    max-height: 20rem;
  }
  .nav-item-dropdown .nav-dropdown a {
    padding: var(--space-sm) var(--space-lg);
    padding-left: 2rem;
  }
}

/* ----- Language selector ----- */
.nav-lang {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  transform: translateX(17rem);
}

/* Temporary: hide language selector across all pages */
.nav-lang {
  display: none;
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Tesla-like language trigger with globe icon */
.nav-lang-btn::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235c6b7a' stroke-width='1.75'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath stroke-linecap='round' d='M3 12h18M12 3c2.8 2.8 2.8 15.2 0 18M12 3c-2.8 2.8-2.8 15.2 0 18'/%3E%3C/svg%3E");
}

.nav-lang-btn:hover,
.nav-lang-btn:focus {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
  border-color: rgba(12, 45, 72, 0.15);
  box-shadow: 0 1px 2px rgba(12, 45, 72, 0.06);
  outline: none;
}

.nav-lang-btn[aria-expanded="true"] {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
  border-color: rgba(12, 45, 72, 0.2);
  box-shadow: 0 1px 2px rgba(12, 45, 72, 0.08);
}

.nav-lang-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.8;
}

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 0;
  min-width: 10rem;
  padding: var(--space-xs);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 200;
}

.nav-lang-dropdown[hidden] {
  display: none;
}

.nav-lang-dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-lang-dropdown a:hover,
.nav-lang-dropdown a:focus {
  color: var(--ocean-900);
  background-color: var(--bg-alt);
}

@media (max-width: 768px) {
  .nav-lang {
    margin-left: auto;
    margin-right: var(--space-sm);
  }
  .nav-lang-dropdown {
    right: 0;
    left: auto;
  }
}

/* ----- Hero (home) ----- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
}

@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) var(--space-md);
    min-height: 75vh;
  }
}

.hero-image {
  background: var(--ocean-900) url('images/Greece Mar 25.jpg') center/cover no-repeat;
}

/* Hero background video (fallback: .hero-image or poster) */
.hero-video-section {
  background: var(--ocean-900) url('images/Greece Mar 25.jpg') center/cover no-repeat;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-fallback .hero-video-wrap {
  display: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: auto;
    height: 100%;
    min-width: 100%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(12, 45, 72, 0.3) 0%, rgba(12, 45, 72, 0.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.inoca-logo {
  width: clamp(90px, 12vw, 160px);
  height: auto;
  display: block;
}

.inoca-logo-home-hero {
  position: absolute;
  top: -12.0rem;
  right: 0rem;
  z-index: 3;
  filter: brightness(0) invert(1);
}

.inoca-logo-page-hero {
  position: absolute;
  top: -7.0rem;
  right: 1.0rem;
  z-index: 3;
  filter: brightness(0) invert(1);
}

@media (min-width: 769px) {
  /* Stable desktop offsets: keep logos visible */
  .inoca-logo-home-hero {
    right: -4rem;
  }

  .inoca-logo-page-hero {
    right: -2rem;
  }
}

/* Laptop screens: drop INOCA hero logo slightly lower */
@media (min-width: 769px) and (max-width: 1366px) {
  .inoca-logo-home-hero {
    top: -8rem;
    right: -6rem;
  }

  .inoca-logo-page-hero {
    top: -6.5rem;
    right: 0rem;
  }
}

/* Smaller desktop/tablet landscape: pull home INOCA left and up */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-home .inoca-logo-home-hero {
    top: -8rem;
    right: -2rem;
  }
}

/* 820x1180-class screens (home only): lift INOCA logo significantly */
@media (min-width: 800px) and (max-width: 840px) and (min-height: 1120px) and (max-height: 1220px) {
  .page-home .inoca-logo-home-hero {
    top: -18rem;
  }
}

/* Large desktop: modest extra left shift */
@media (min-width: 1700px) {
  .inoca-logo-home-hero {
    right: -6rem;
  }

  .inoca-logo-page-hero {
    right: -4rem;
  }
}

/* 1920-class desktops: nudge INOCA logos slightly right */
@media (min-width: 1700px) and (max-width: 1999px) {
  .inoca-logo-home-hero {
    right: -26rem;
    top: -12.5rem;
  }

  .inoca-logo-page-hero {
    right: -24rem;
    top: -7.5rem;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.025em;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
  margin: 0 auto var(--space-2xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ----- Brand statement ----- */
.brand-statement {
  padding: var(--space-3xl) var(--space-lg);
  padding-bottom: var(--space-xl);
}

/* Compact brand bridge (homepage): short transition from hero to content */
.brand-statement-bridge {
  padding: var(--space-xl) var(--space-lg);
  padding-bottom: var(--space-lg);
  background: var(--bg-alt);
  margin-top: var(--space-lg); /* white space below hero */
  margin-bottom: 0; /* no white space before INOCA section */
}

.brand-statement-bridge .brand-statement-tagline {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-xs);
}

.brand-statement-bridge .brand-statement-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

.brand-statement-bridge .brand-statement-text {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Bring INOCA section closer to brand statement on homepage */
.brand-statement + .section {
  padding-top: var(--space-xl);
}

/* Home: extend light-grey styling through INOCA section */
.page-home .brand-statement + .section {
  background: var(--bg-alt);
  margin-top: 0; /* no gap after Engineering section */
  margin-bottom: var(--space-lg); /* white space below */
}

/* Home INOCA section: logo-green accents */
.page-home .brand-statement + .section .btn-primary {
  background: #b6c33e;
  color: #0c2d48;
}

.page-home .brand-statement + .section .btn-primary:hover,
.page-home .brand-statement + .section .btn-primary:focus {
  background: #a5b236;
}

.page-home .brand-statement + .section .check-list li::before {
  color: #b6c33e;
}

.brand-statement-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.brand-statement-tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--teal-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--space-md);
  line-height: 1.3;
}

.brand-statement-headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ocean-900);
  margin: 0 0 var(--space-lg);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.brand-statement-text {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .brand-statement {
    padding: var(--space-2xl) var(--space-md);
  }
  .brand-statement-bridge {
    padding: var(--space-lg) var(--space-md);
    padding-bottom: var(--space-md);
  }
}

/* ----- Home page: What Sgorran Does cards (fish-shaped) ----- */
.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

/* Fish-shaped card: rounded head (left), pointed tail (right) */
.home-card {
  padding: var(--space-xl);
  padding-right: var(--space-xl);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) * 2);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.home-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 115, 0.2);
}

.home-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #b6c33e;
  color: #0c2d48;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.home-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ocean-900);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}

.home-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}

.home-card-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal-600);
  transition: color 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}

.home-card-link:hover {
  color: var(--accent-hover);
}

/* Pill button style matching region tags */
.region-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #b6c33e;
  color: #0c2d48;
  border: 1px solid #b6c33e;
  line-height: 1.2;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.region-pill-link:hover,
.region-pill-link:focus {
  background: #a5b236;
  border-color: #a5b236;
  color: #0c2d48;
}

/* ----- Latest News & Updates ----- */
.news-intro {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.news-card {
  padding: var(--space-xl);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 115, 0.2);
}

.news-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-600);
  margin-bottom: var(--space-sm);
}

.news-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ocean-900);
  margin: 0 0 var(--space-sm);
  line-height: 1.35;
}

.news-card-summary {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  flex: 1;
}

.news-card-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal-600);
  margin-top: auto;
  transition: color 0.2s ease;
}

.news-card-link:hover {
  color: var(--accent-hover);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Homepage news teaser: compact single-card version */
.news-teaser {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.news-teaser .section-title {
  margin-bottom: var(--space-sm);
}

.news-teaser-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto var(--space-xl);
  line-height: 1.5;
}

.news-teaser-card-wrap {
  max-width: 28rem;
  margin: 0 auto;
}

.news-teaser-actions {
  margin-top: var(--space-xl);
}

/* Home: logo-green CTAs in News and Contact sections */
.page-home .news-teaser .btn-primary,
.page-home .news-teaser + .section.section-alt .btn-primary {
  background: #b6c33e;
  color: #0c2d48;
}

.page-home .news-teaser .btn-primary:hover,
.page-home .news-teaser .btn-primary:focus,
.page-home .news-teaser + .section.section-alt .btn-primary:hover,
.page-home .news-teaser + .section.section-alt .btn-primary:focus {
  background: #a5b236;
}

/* Home: white gap between Latest News and Ready to discuss */
.page-home .news-teaser + .section.section-alt {
  margin-top: var(--space-lg);
}

/* Home: no extra gap between Ready to discuss and footer */
.page-home main > .section.section-alt:last-of-type {
  margin-bottom: 0;
  padding-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .home-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: var(--space-2xl) 0;
  }
}

.page-hero-image {
  position: relative;
  background-image: url("images/technology-hero-water.png");
  background-position: 75% center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ocean-900);
}

/* Technology page hero override: user-provided water image */
.technology-hero-image {
  background-image: url("images/technology-hero-water.png");
  background-position: 75% center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Technology page: brand-color checklist ticks */
.technology-hero-image ~ .section .check-list li::before {
  color: #b6c33e;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(182, 195, 62, 0.75);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
}

.inoca-logo-tech-hero {
  position: absolute;
  top: -20rem;
  right: 0.5rem;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35), 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-hero-dark {
  background: var(--ocean-900);
  color: #fff;
}

.page-hero-dark .page-hero-inner { color: #fff; }
.page-hero-dark .page-hero-subtitle { color: rgba(255, 255, 255, 0.85); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #b6c33e;
  color: #0c2d48;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #a5b236;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary-light:hover,
.btn-secondary-light:focus {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* ----- Sections ----- */
.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--ocean-900);
  color: #fff;
  padding: var(--space-3xl) 0;
}

/* Home: make Global Aquaculture section visually uniform with light sections */
.page-home .section-dark {
  background: var(--bg-alt);
  color: var(--text);
}

.page-home .section-dark .section-title-light {
  color: var(--ocean-900);
}

.page-home .section-dark .section-text,
.page-home .section-dark .section-text-light {
  color: var(--text-muted);
}

.page-home .section-dark .section-text a {
  color: #b6c33e;
  font-weight: 600;
}

.page-home .section-dark .section-text a:hover,
.page-home .section-dark .section-text a:focus {
  color: #a5b236;
}

.page-home .section-dark .region-tags span {
  background: #fff;
  color: var(--ocean-900);
  border: 1px solid var(--border);
}

/* Home global-section CTA in logo green */
.page-home .section-dark .btn-primary {
  background: #b6c33e;
  color: #0c2d48;
}

.page-home .section-dark .btn-primary:hover,
.page-home .section-dark .btn-primary:focus {
  background: #a5b236;
}

/* Home: white separator before Global Aquaculture Experience */
.page-home .section.section-alt + .section.section-dark {
  margin-top: var(--space-lg);
}

/* Home: white separator before Latest News section */
.page-home .section.section-dark + .section.section-alt.news-teaser {
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .section,
  .section-alt,
  .section-dark {
    padding: var(--space-2xl) 0;
  }
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ocean-900);
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.section-title-light {
  color: #fff;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ocean-900);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 0 var(--space-xl);
  line-height: 1.75;
}

.activity-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-2xl);
  max-width: none;
}

.activity-list li {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .activity-list {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .activity-list li {
    margin-bottom: 0;
  }
}

.activity-list li strong {
  color: var(--ocean-900);
  font-weight: 600;
}

.section-text {
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.75;
}

.section-text-accent {
  font-weight: 600;
  color: var(--ocean-900);
  margin-bottom: var(--space-sm);
}

.section-text-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .section-text { color: rgba(255, 255, 255, 0.8); }

/* ----- Card grid ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: rgba(12, 107, 115, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image-wrap img {
  transform: scale(1.02);
}

.card-body {
  padding: var(--space-xl);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ocean-900);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.65;
}

.card-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal-600);
  transition: color 0.2s ease;
}

.card-link:hover { color: var(--accent-hover); }

/* ----- Split section ----- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split-section.reverse .split-content { order: 2; }
.split-section.reverse .split-image { order: 1; }

.split-content .section-title { margin-top: 0; }

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}

.inoca-logo-home-secondary {
  width: clamp(20px, 10.0vw, 100px);
  position: absolute;
  bottom: -0.0rem;
  left: 0.6rem;
  margin: 0;
  z-index: 2;
  filter: brightness(0) invert(1);
}

/* Override generic .split-image img { width: 100% } for this overlay logo */
.split-image img.inoca-logo-home-secondary {
  width: clamp(50px, 7.5vw, 100px);
  max-width: none;
  height: auto;
}

.inoca-logo-services-delivery {
  position: absolute;
  bottom: -0.6rem;
  left: 0.6rem;
  z-index: 2;
  width: clamp(44px, 5vw, 90px);
  filter: brightness(0) invert(1);
}

.split-image img.inoca-logo-services-delivery {
  width: clamp(44px, 5vw, 90px);
  max-width: none;
  height: auto;
}

.split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.split-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.split-image-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: var(--space-lg);
}

.split-image-placeholder .placeholder-label {
  font-weight: 600;
  color: var(--ocean-800);
  margin: 0 0 var(--space-xs);
}

.split-image-placeholder .placeholder-hint {
  font-size: 0.8125rem;
  margin: 0;
  opacity: 0.85;
}

.split-video-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.split-video-wrap .tech-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-list {
  margin: var(--space-md) 0 var(--space-xl);
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-weight: 600;
}

.page-about .check-list li::before {
  color: #b6c33e;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }
  .split-section .split-content,
  .split-section .split-image,
  .split-section.reverse .split-content,
  .split-section.reverse .split-image { order: unset; }
}

/* ----- Brochure ----- */
.brochure-section .section-text {
  margin-bottom: var(--space-md);
}

.brochure-download {
  margin-bottom: var(--space-xl);
}

.brochure-embed-wrap {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  min-height: 70vh;
  box-shadow: var(--shadow-sm);
}

.brochure-embed {
  width: 100%;
  height: 75vh;
  min-height: 500px;
  display: block;
}

/* ----- Region tags ----- */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin: var(--space-2xl) 0;
}

.region-tags span {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: #b6c33e;
  color: #0c2d48;
}

.region-tags a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: #b6c33e;
  color: #0c2d48;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.region-tags a:hover,
.region-tags a:focus {
  background: #a5b236;
  color: #0c2d48;
  border-color: #a5b236;
}

.section-alt .region-tags span {
  background: #b6c33e;
  color: #0c2d48;
  border: 1px solid #b6c33e;
}

.section-alt .region-tags a {
  background: #b6c33e;
  color: #0c2d48;
  border: 1px solid #b6c33e;
}

/* ----- Feature list (Technology) ----- */
.feature-list {
  max-width: 40rem;
  margin: var(--space-xl) auto 0;
  padding: 0;
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  background: var(--bg);
  border-radius: calc(var(--radius-lg) * 2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 115, 0.2);
}

.feature-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #b6c33e;
  color: #0c2d48;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ocean-900);
  margin: 0 0 var(--space-xs);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ----- Services grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding: 0;
}

.service-card {
  padding: var(--space-xl);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 115, 0.2);
}

.service-card .card-title { margin-bottom: var(--space-xs); }
.service-card .card-desc { margin: 0; }

/* ----- Markets list ----- */
.markets-list {
  margin-top: var(--space-xl);
  padding: 0;
}

.market-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
}

.market-item:last-child { border-bottom: none; }

.market-item.reverse .market-content { order: 2; }
.market-item.reverse .market-image { order: 1; }

.market-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.market-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .market-item,
  .market-item.reverse {
    grid-template-columns: 1fr;
  }
  .market-item .market-content,
  .market-item .market-image,
  .market-item.reverse .market-content,
  .market-item.reverse .market-image { order: unset; }
}

/* ----- Distributors and agents page ----- */
.agent-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-600);
  margin-bottom: var(--space-sm);
  padding: 0.25rem 0.75rem;
  background: rgba(12, 107, 115, 0.08);
  border-radius: var(--radius);
}

.distributor-agent-card .split-content .section-subtitle {
  margin-top: 0;
}

.agent-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin: 0.9rem 0 var(--space-md);
}

.distributor-regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.region-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.region-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 115, 0.2);
}

.region-card-image {
  aspect-ratio: 400 / 260;
  overflow: hidden;
  background: var(--bg-alt);
}

.region-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.region-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ocean-900);
  margin: 0 0 var(--space-sm);
}

.region-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .distributor-regions-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Values grid (About) ----- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding: 0;
}

.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 107, 115, 0.2);
}

.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #b6c33e;
  color: #0c2d48;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.value-card .card-title { margin-bottom: var(--space-xs); }
.value-card .card-desc { margin: 0; font-size: 0.9375rem; }

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

/* ----- Image full ----- */
.image-full {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.inoca-logo-tech-bottom {
  position: absolute;
  bottom: -0.6rem;
  left: 0.6rem;
  z-index: 2;
  width: clamp(40px, 10vw, 100px);
  filter: brightness(0) invert(1);
}

/* Override generic .image-full img sizing for bottom INOCA overlay logo */
.image-full img.inoca-logo-tech-bottom {
  width: clamp(100px, 7.5vw, 200px);
  max-width: none;
  height: auto;
}

.image-full img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .inoca-logo-home-hero {
    top: -5.0rem;
    right: -1.5rem;
    width: 84px;
  }

  .inoca-logo-page-hero {
    top: -5.0rem;
    right: 0rem;
    width: 84px;
  }

  .inoca-logo-tech-bottom {
    bottom: -0.4rem;
    left: 0.4rem;
    width: 24px;
  }

  .inoca-logo-services-delivery {
    bottom: -0.2rem;
    left: 0.45rem;
    width: 56px;
  }

  .split-image img.inoca-logo-services-delivery {
    width: 56px;
  }

  .image-full img.inoca-logo-tech-bottom {
    width: 64px;
  }
}

/* Tablet portrait (e.g. 768x1024): raise home INOCA logo significantly */
@media (max-width: 768px) and (min-height: 900px) {
  .page-home .inoca-logo-home-hero {
    top: -12rem;
  }
}

/* Narrow phones with tall screens: keep home INOCA logo visible */
@media (max-width: 480px) and (min-height: 900px) {
  .page-home .inoca-logo-home-hero {
    top: -7rem;
  }
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 56rem;
  margin: 0 auto;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-600);
  transition: color 0.2s;
}

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

.page-contact .contact-email { color: #b6c33e; }
.page-contact .contact-email:hover { color: #a5b236; }

.contact-form-wrap {
  padding: var(--space-2xl);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ocean-900);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.contact-form label:first-of-type { margin-top: 0; }

.contact-form .required { color: #b91c1c; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 154, 155, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form button {
  margin-top: var(--space-lg);
}

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

/* ----- Footer ----- */
.site-footer {
  background: #fff;
  color: var(--text-muted);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

@media (max-width: 768px) {
  .site-footer {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
}

.footer-main { flex: 1 1 16rem; }

.footer-logo {
  display: inline-block;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 200px;
  width: auto;
  max-height: 200px;
  object-fit: contain;
  object-position: left center;
  /* Use filter below if logo is dark and footer is dark, so it appears white: */
  /* filter: brightness(0) invert(1); */
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 200px;
    max-height: 200px;
  }
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: var(--space-xs) 0 0;
  max-width: 24ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-nav a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--ocean-900); }

.footer-copy {
  width: 100%;
  margin: var(--space-lg) 0 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

