:root {
  --ink: #132026;
  --muted: #52636b;
  --soft: #f5f8f4;
  --panel: #ffffff;
  --line: #d9e4dc;
  --deep: #05344a;
  --blue: #0f6c9b;
  --teal: #08796d;
  --green: #2c7a3f;
  --gold: #f3c623;
  --warm: #c8562d;
  --shadow: 0 18px 50px rgba(7, 38, 55, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcf8;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(243, 198, 35, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--deep);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(217, 228, 220, 0.82);
  background: rgba(251, 252, 248, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 244px;
  color: var(--deep);
  text-decoration: none;
}

.seal-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
}

.seal-wrap img {
  width: 88px;
  height: 48px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.03rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 6px;
  color: #243942;
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #edf5ef;
  color: var(--teal);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--deep);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--teal);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 52, 74, 0.92), rgba(5, 52, 74, 0.68) 47%, rgba(5, 52, 74, 0.22)),
    linear-gradient(0deg, rgba(4, 30, 39, 0.55), rgba(4, 30, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 36px));
  padding: clamp(80px, 12vw, 132px) clamp(18px, 6vw, 72px) 160px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--deep);
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.08rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  background: var(--gold);
  color: #172126;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.quiet {
  border-color: var(--line);
  background: #fff;
  color: var(--deep);
}

.quick-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(560px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.quick-panel div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.quick-panel div:last-child {
  border-right: 0;
}

.quick-panel strong,
.quick-panel span {
  display: block;
}

.quick-panel strong {
  color: var(--deep);
  font-size: 1.75rem;
  line-height: 1;
}

.quick-panel span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.alert-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: #fff6ca;
  color: #422d00;
}

.alert-strip span {
  flex: 1;
}

.alert-strip a {
  font-weight: 900;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p,
.portal-copy p,
.tourism-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-section,
.directory-section,
.business-section,
.source-section,
.forms-section {
  background: var(--soft);
}

.service-grid,
.feature-grid,
.source-grid,
.guide-board,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.feature-grid article,
.timeline article,
.directory-card,
.guide-board article,
.safety-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(9, 54, 73, 0.07);
}

.service-grid article {
  min-height: 278px;
  padding: 22px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid #c8dace;
  border-radius: 8px;
  background: #f4fbf0;
  color: var(--teal);
}

.card-icon svg,
.check-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid p,
.feature-grid p,
.timeline p,
.directory-card p {
  color: var(--muted);
}

.service-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
}

.guides-section {
  background: #fff;
}

.guide-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-board article,
.safety-grid article {
  padding: 22px;
}

.guide-board ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--muted);
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(15, 108, 155, 0.1), rgba(44, 122, 63, 0.08)),
    #fff;
}

.forms-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 34px rgba(9, 54, 73, 0.07);
}

.forms-table div {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.forms-table div:last-child {
  border-bottom: 0;
}

.forms-table strong {
  color: var(--deep);
}

.forms-table span {
  color: var(--muted);
}

.forms-table a {
  color: var(--teal);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #334952;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.portal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.portal-form label,
.directory-filter label {
  display: grid;
  gap: 7px;
}

.portal-form label.full {
  grid-column: 1 / -1;
}

.portal-form span,
.directory-filter span {
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd8d0;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-actions,
.portal-output {
  grid-column: 1 / -1;
}

.portal-output {
  min-height: 44px;
  padding: 12px;
  border-radius: 6px;
  background: #f6f8f4;
  color: var(--muted);
  font-size: 0.92rem;
}

.directory-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 20px;
}

.directory-filter {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.filter-tags button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--deep);
  font-weight: 850;
  cursor: pointer;
}

.filter-tags button.is-active {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}

.directory-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.directory-card {
  min-height: 204px;
  padding: 20px;
}

.directory-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf6f0;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.directory-card ul {
  display: grid;
  gap: 5px;
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  padding: 22px;
  border-top: 5px solid var(--gold);
}

.timeline time {
  display: block;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 0.88rem;
  font-weight: 950;
}

.safety-section {
  background:
    linear-gradient(135deg, rgba(200, 86, 45, 0.1), rgba(15, 108, 155, 0.08)),
    #fff;
}

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

.safety-grid article {
  min-height: 180px;
  border-top: 5px solid var(--warm);
}

.safety-grid p {
  color: var(--muted);
}

.tourism-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #fff;
}

.feature-grid {
  grid-template-columns: 1fr;
}

.feature-grid article {
  min-height: 154px;
  padding: 22px;
  border-left: 5px solid var(--blue);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-grid div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--deep);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.stat-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
}

.transparency-section {
  background: var(--deep);
}

.transparency-section h2,
.transparency-section .section-heading p {
  color: #fff;
}

.transparency-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.transparency-links a,
.source-grid a {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 16px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.transparency-links a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.source-grid a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: var(--muted);
}

.site-footer a {
  font-weight: 900;
}

.inline-cta {
  display: inline-flex;
  color: var(--teal);
  font-weight: 900;
}

.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(5, 52, 74, 0.94), rgba(8, 121, 109, 0.78)),
    url("assets/cadiz-aerial-2023.jpg") center / cover;
  color: #fff;
}

.news-hero h1 {
  max-width: 880px;
}

.news-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.news-hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.news-hero-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.news-hero-card div {
  padding: 20px;
}

.news-hero-card span,
.digest-list span,
.video-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.now-section,
.digest-section,
.video-section {
  background: var(--soft);
}

.now-grid,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.now-grid article,
.calendar-grid article {
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(9, 54, 73, 0.07);
}

.now-grid time {
  display: block;
  margin-bottom: 14px;
  color: var(--warm);
  font-weight: 950;
}

.now-grid p,
.calendar-grid span,
.digest-list p,
.video-card p,
.media-wall figcaption span {
  color: var(--muted);
}

.now-grid a,
.digest-list a {
  color: var(--teal);
  font-weight: 900;
}

.media-section {
  background: #fff;
}

.media-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.media-wall figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
}

.media-wall figure.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 574px;
}

.media-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-wall figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 54px 16px 16px;
  background: linear-gradient(0deg, rgba(5, 52, 74, 0.9), rgba(5, 52, 74, 0));
  color: #fff;
}

.media-wall figcaption strong,
.media-wall figcaption span {
  display: block;
}

.media-wall figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(9, 54, 73, 0.07);
  text-decoration: none;
}

.video-card.feature {
  grid-column: span 2;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dde7e1;
}

.video-card::after {
  content: "";
  position: absolute;
  top: clamp(74px, 8vw, 118px);
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 52, 74, 0.82);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.video-card::before {
  content: "";
  position: absolute;
  top: clamp(74px, 8vw, 118px);
  left: calc(50% + 3px);
  z-index: 2;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gold);
  transform: translate(-50%, -50%);
}

.video-card span,
.video-card h3,
.video-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.video-card span {
  margin-top: 18px;
}

.video-card p {
  margin-bottom: 20px;
}

.video-playlists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.video-playlists a {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.video-playlists strong {
  color: var(--deep);
}

.video-playlists span {
  color: var(--muted);
}

.digest-list {
  display: grid;
  gap: 14px;
}

.digest-list article {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(9, 54, 73, 0.07);
}

.digest-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.calendar-section {
  background: #fff;
}

.calendar-grid article {
  min-height: 150px;
}

.calendar-grid strong,
.calendar-grid span {
  display: block;
}

.calendar-grid strong {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.5rem;
}

.invest-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(5, 52, 74, 0.94), rgba(44, 122, 63, 0.78)),
    url("assets/cadiz-wharf.jpg") center / cover;
  color: #fff;
}

.invest-hero p {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.invest-proof-card,
.resource-lead,
.sector-grid article,
.advantage-stack article,
.path-grid article,
.resource-grid article,
.asset-map-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(9, 54, 73, 0.07);
}

.invest-proof-card {
  overflow: hidden;
  color: var(--ink);
}

.invest-proof-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.invest-proof-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.invest-proof-card strong {
  color: var(--deep);
  font-size: 1.2rem;
}

.invest-proof-card span {
  color: var(--muted);
}

.invest-signal-section,
.resource-section,
.investor-path-section {
  background: var(--soft);
}

.invest-signal-grid,
.resource-grid,
.asset-map-grid,
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.invest-signal-grid article {
  min-height: 224px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.invest-signal-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.invest-signal-grid p,
.sector-grid p,
.advantage-stack p,
.resource-grid p,
.asset-map-grid p,
.path-grid p {
  color: var(--muted);
}

.sector-section,
.advantage-section,
.asset-map-section {
  background: #fff;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sector-grid article {
  overflow: hidden;
}

.sector-grid img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.sector-grid div {
  padding: 20px;
}

.sector-grid span,
.resource-lead span {
  display: block;
  margin-bottom: 8px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.advantage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.advantage-stack {
  display: grid;
  gap: 14px;
}

.advantage-stack article,
.path-grid article,
.resource-grid article,
.asset-map-grid article {
  padding: 20px;
}

.resource-layout {
  display: grid;
  gap: 18px;
}

.resource-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  overflow: hidden;
}

.resource-lead img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.resource-lead div {
  align-self: center;
  padding: clamp(22px, 4vw, 38px);
}

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

.asset-map-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asset-map-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.08rem;
  font-weight: 950;
}

.path-grid {
  margin-bottom: 18px;
}

.path-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.2rem;
}

.investor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.investor-form label {
  display: grid;
  gap: 7px;
}

.investor-form label.full,
.investor-form button,
.investor-form output {
  grid-column: 1 / -1;
}

.investor-form span {
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .service-grid,
  .timeline,
  .source-grid,
  .transparency-links,
  .guide-board,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-section,
  .tourism-section,
  .directory-layout {
    grid-template-columns: 1fr;
  }

  .directory-filter {
    position: static;
  }

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

  .news-hero,
  .invest-hero,
  .digest-list article,
  .advantage-section,
  .resource-lead {
    grid-template-columns: 1fr;
  }

  .now-grid,
  .calendar-grid,
  .media-wall,
  .video-grid,
  .video-playlists,
  .invest-signal-grid,
  .path-grid,
  .resource-grid,
  .asset-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-bottom: 260px;
  }

  .quick-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .quick-panel div {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-panel div:last-child {
    border-bottom: 0;
  }

  .alert-strip {
    display: grid;
  }

  .service-grid,
  .timeline,
  .source-grid,
  .transparency-links,
  .directory-results,
  .portal-form,
  .stat-grid,
  .guide-board,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .forms-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .now-grid,
  .calendar-grid,
  .media-wall,
  .video-grid,
  .video-playlists,
  .invest-signal-grid,
  .path-grid,
  .resource-grid,
  .asset-map-grid,
  .investor-form {
    grid-template-columns: 1fr;
  }

  .media-wall figure.large,
  .video-card.feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }
}
