/* ============= HERO BANNER STATIC ============= */
.hero-banner-static {
  position: relative; width: 100%;
  /* overflow: visible — lets cards extend below the hero */
  background: var(--ink);
  height: 100vh; min-height: 540px; max-height: 900px;
}
/* Clip wrapper: only the video + overlay are clipped to hero bounds */
.hero-banner-clip {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 90%;
  display: block;
}
.hero-banner-static-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,20,35,0.78) 0%,
    rgba(6,20,35,0.45) 50%,
    rgba(6,20,35,0.15) 100%
  );
}
.hero-banner-static-content {
  position: absolute; left: 0; right: 0; top: 0; bottom: 200px; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(24px, 6vw, 96px) clamp(24px, 3vw, 40px);
  max-width: 700px;
}
.hero-banner-static-title {
  font-size: clamp(44px, 6.5vw, 100px);
  line-height: 1.0; letter-spacing: -0.02em; font-weight: 500;
  color: var(--paper); margin: 0 0 20px;
}
.hero-banner-static-title em { font-style: italic; }
.hero-banner-static-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(246,244,238,0.75);
  line-height: 1.55; margin-bottom: 36px;
}
.hero-banner-static-cta { align-self: flex-start; }

/* Latest updates carousel strip */
.hero-latest-strip {
  position: absolute; bottom: -70px; left: 0; right: 0;
  z-index: 3; padding: 0;
}
/* Header row: label + nav arrows */
.hero-latest-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 10px;
  margin: 0 clamp(24px, 1vw, 96px);
}
.hero-latest-label {
  font-family: var(--serif);
  font-size: clamp(14px, 1.8vw, 30px);
  font-weight: 500; letter-spacing: 0.02em;
  color: rgba(246,244,238,0.75); line-height: 1;
}
.hero-latest-nav { display: flex; gap: 8px; }
.hero-latest-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(246,244,238,0.35);
  background: rgba(6,20,35,0.5);
  color: var(--paper); display: grid; place-items: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.hero-latest-btn:hover:not(:disabled) {
  background: rgba(6,20,35,0.85); border-color: rgba(246,244,238,0.8);
}
.hero-latest-btn:disabled { opacity: 0.3; cursor: default; }

/* Scroll-snap viewport */
.hero-latest-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 0 clamp(24px, 6vw, 96px);
}
.hero-latest-viewport::-webkit-scrollbar { display: none; }
.hero-latest-track { display: flex; gap: 16px; }

/* Promo banner cards */
.hero-promo-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  height: 130px; border-radius: 10px;
  position: relative; overflow: hidden;
  background-size: contain; background-position: center;
  text-decoration: none; display: block;
  transition: transform 0.25s; flex-shrink: 0;
}
.hero-promo-card:hover { transform: translateY(-3px); }
.hero-promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(6,20,35,0.92) 0%,
    rgba(6,20,35,0.55) 50%,
    rgba(6,20,35,0.25) 100%);
}
.hero-promo-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px; z-index: 1;
}
.hero-promo-tag {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.hero-promo-title {
  font-size: 15px; font-weight: 600; color: var(--paper);
  line-height: 1.2; margin-bottom: 3px;
}
.hero-promo-date {
  font-size: 10px; letter-spacing: 0.12em;
  color: rgba(246,244,238,0.6);
}

/* Tablet: 2 cards */
@media (max-width: 900px) {
  .hero-promo-card { flex: 0 0 calc((100% - 16px) / 2); }
}
/* Mobile: 1 card + peek of next */
@media (max-width: 640px) {
  .hero-banner-static { height: 82svh; min-height: 480px; max-height: none; }
  .hero-banner-static-content { padding: 0 20px 20px; max-width: 100%; }
  .hero-banner-static-title { font-size: clamp(38px, 10vw, 60px); }
  .hero-latest-strip { bottom: -55px; }
  .hero-latest-header { padding: 0 20px 10px; margin: 0 0; }
  .hero-latest-viewport { padding: 0 20px; }
  .hero-promo-card { flex: 0 0 78%; height: 88px; }
}

/* ============= TRUST BAND ============= */
.trust-band {
  background: var(--navy);
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,244,238,0.1);
}
.trust-band-list {
  list-style: none;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap; overflow: hidden;
}
.trust-band-list li {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 20px; white-space: nowrap;
}
.trust-tier { color: rgba(246,244,238,0.55); }
.trust-sep {
  width: 1px; height: 16px;
  background: rgba(246,244,238,0.2);
  padding: 0; flex-shrink: 0;
}
@media (max-width: 880px) {
  .trust-band-list { gap: 0; justify-content: center; }
  .trust-sep { display: none; }
  .trust-band-list li { padding: 3px 14px; }
}
@media (max-width: 520px) {
  .trust-band { display: none; }
}

/* ============= BOOKING BAR ============= */
.booking { padding: 48px 0; background: var(--paper); margin-top: 90px; }
.booking-card {
  background: var(--paper); border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -40px rgba(6,20,35,0.45); padding: 0;
}
.booking-tabs {
  display: flex; border-bottom: 1px solid var(--rule); overflow-x: auto;
}
.booking-tab {
  padding: 20px 28px; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; color: inherit;
  opacity: 0.6; position: relative; white-space: nowrap; cursor: pointer;
  transition: opacity 0.2s;
}
.booking-tab.active { opacity: 1; }
.booking-tab.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--accent);
}
.booking-tab:hover { opacity: 1; }
.booking-row {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr 1fr 1.3fr auto;
  gap: 0; align-items: center; padding: 14px 0;
}
.booking-field {
  padding: 16px 28px; border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.booking-field:first-child { padding-left: 32px; }
.booking-field label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.55;
}
.booking-input input,
.booking-input select {
  border: 0; background: transparent; color: inherit;
  font-family: var(--serif); font-size: 18px; width: 100%;
  padding: 2px 0; outline: none;
}
.booking-input input::-webkit-calendar-picker-indicator { opacity: 0.45; cursor: pointer; }
.booking-swap { padding: 0 12px; font-size: 18px; opacity: 0.5; align-self: center; }
.booking-submit { margin: 16px 28px 16px 16px; padding: 20px 32px; white-space: nowrap; }
.booking-foot {
  border-top: 1px solid var(--rule); padding: 16px 32px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.12em;
}

/* ============= PROMOS ============= */
.section { padding: 120px 0; }
.section-promos { background: var(--navy); }
.section-promos .section-head { border-bottom-color: rgba(246,244,238,0.1); }
.section-promos .num { color: var(--accent); }
.section-promos .h-2 { color: var(--paper); }
.promos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.promo {
  display: flex; flex-direction: column;
  background: var(--navy-2); border: 1px solid rgba(246,244,238,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.promo:hover { transform: translateY(-4px); box-shadow: 0 20px 60px -30px rgba(0,0,0,0.5); }
.promo-media { aspect-ratio: 3/4; position: relative; overflow: hidden; background: #0a1f33; }
.promo-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.promo:hover .promo-media img { transform: scale(1.04); }
.promo-ribbon {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; padding: 6px 10px; font-weight: 600;
}
.promo-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.promo-date { font-size: 10px; letter-spacing: 0.2em; opacity: 0.45; color: var(--paper); }
.promo-title { text-wrap: balance; color: var(--paper); }
.promo-copy { font-size: 14px; line-height: 1.55; opacity: 0.65; flex: 1; color: var(--paper); }
.promo-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid rgba(246,244,238,0.1);
}
.promo-price { font-size: 13px; letter-spacing: 0.08em; color: var(--accent); font-weight: 600; }
.promo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo .btn-ghost { color: var(--paper); opacity: 0.7; }
.promo .btn-ghost:hover { opacity: 1; }

/* ============= STATS ============= */
.section-stats {
  background: var(--navy);
  border-top: 3px solid var(--accent);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-light);
}
.stat { padding: 56px 40px 56px 0; border-right: 1px solid var(--rule-light); }
.stat:last-child { border-right: 0; }
.stat-n {
  font-size: clamp(52px, 7vw, 112px); line-height: 1;
  font-family: var(--serif); display: flex; align-items: baseline; gap: 8px;
}
.stat-n .serif { color: var(--paper); }
.stat-suffix { font-family: var(--mono); font-size: 20px; color: var(--accent); letter-spacing: 0.05em; }
.stat-label { margin-top: 20px; font-size: 15px; letter-spacing: 0.04em; color: rgba(246,244,238,0.85); }
.stat-sub { margin-top: 6px; font-size: 10px; letter-spacing: 0.22em; color: var(--accent); opacity: 0.8; }
.stats-quote {
  margin-top: 80px; padding-top: 56px;
  border-top: 1px solid var(--rule-light); max-width: 860px;
}
.stats-quote-tag { font-size: 10px; letter-spacing: 0.24em; opacity: 0.45; margin-bottom: 24px; color: var(--paper); }
.stats-quote blockquote {
  font-size: clamp(26px, 3.2vw, 44px); line-height: 1.2; font-weight: 400; font-style: italic;
  color: var(--paper); opacity: 0.9;
}

/* ============= CERT PATH ============= */
.section-cert { background: var(--paper-2); }
.cert {
  position: relative; display: grid;
  grid-template-columns: 80px 1fr; gap: 0; min-height: 780px;
  padding-bottom: 300px;
}
.cert-axis { position: relative; border-right: 1px solid var(--rule); height: 780px; }
.cert-axis-tick {
  position: absolute; left: 0; transform: translateY(-50%);
  font-size: 10px; letter-spacing: 0.18em; opacity: 0.55;
}
.cert-rail {
  position: absolute; left: 88px; right: 0; top: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
  z-index: 0;
}
.cert-stages {
  position: relative; display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; padding: 0; height: 780px;
}
.cert-stage {
  position: relative; border-right: 1px dashed var(--rule); padding: 48px 16px 16px;
}
.cert-stage:last-child { border-right: 0; }
.cert-stage-peg {
  position: absolute; left: 50%; top: 36px;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-size: 11px; letter-spacing: 0.08em;
  border: 4px solid var(--paper-2); z-index: 2;
}
.cert-stage::before {
  content: ""; position: absolute;
  left: 50%; top: 48px; width: 1px; height: var(--depth);
  background: repeating-linear-gradient(180deg, var(--rule) 0 4px, transparent 4px 8px);
  transform: translateX(-50%);
}
.cert-stage-card {
  position: absolute; left: 14px; right: 14px;
  top: calc(48px + var(--depth) + 16px);
  background: var(--paper); border: 1px solid var(--rule); padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cert-stage-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -16px rgba(6,20,35,0.25); }
.cert-stage-tag { font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.cert-stage-title { margin: 8px 0 14px; font-size: 20px; }
.cert-stage-meta { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.cert-stage-meta > div { display: flex; justify-content: space-between; gap: 8px; border-top: 1px solid var(--rule); padding-top: 6px; }
.cert-stage-meta dt { opacity: 0.55; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.cert-stage-meta dd { text-align: right; }

/* ============= GALLERY ============= */
.section-gallery { background: var(--paper); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gal { position: relative; overflow: hidden; background: #061423; }
.gal-wide { grid-column: span 2; grid-row: span 1; }
.gal-tall { grid-column: span 1; grid-row: span 2; }
.gal-sq { grid-column: span 1; grid-row: span 1; }
.gal img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gal:hover img { transform: scale(1.04); }
.gal .ph-label {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(6,20,35,0.55); color: var(--paper);
  padding: 5px 9px; border: 1px solid rgba(246,244,238,0.25);
}
.gal .ph-coord {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--paper); opacity: 0.7;
}

/* ============= ACCRED ============= */
.section-accred { background: var(--brand-grey); padding: 48px 0; border-top: 1px solid var(--rule); }
.accred-inner {
  display: flex; align-items: center; gap: 64px; flex-wrap: wrap;
}
.accred-text { flex-shrink: 0; }
.accred-title {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 28px);
  font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 12px;
}
.accred-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--accent); text-transform: uppercase;
}
.accred-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.accred-logo { display: flex; align-items: center; justify-content: center; }
.accred-logo img { height: 100px; width: auto; object-fit: contain; transition: transform 0.2s; }
.accred-logo:hover img { transform: scale(1.04); }

/* ============= IDENTITY SECTION ============= */
/* ============= LATEST UPDATES ============= */
.latest-updates { background: var(--paper); padding: 40px 0; border-bottom: 1px solid var(--rule); }
.latest-updates-heading { font-size: clamp(20px, 2vw, 26px); margin-bottom: 24px; }
.latest-updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.update-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border: 1px solid var(--rule);
  transition: background 0.15s;
}
.update-card:hover { background: var(--paper-2); }
.update-card-img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.update-card-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.update-card-meta { font-size: 11px; letter-spacing: 0.1em; opacity: 0.55; }
@media (max-width: 780px) {
  .latest-updates-grid { grid-template-columns: 1fr; }
}

/* ============= IDENTITY ============= */
.identity-section {
  background: var(--paper);
  color: var(--ink);
  padding: 180px 0 96px;
}
.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.identity-depth {
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--accent); margin-bottom: 16px;
}
.identity-rule {
  width: 40px; height: 2px;
  background: var(--accent); margin-bottom: 28px;
}
.identity-title {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.0; letter-spacing: -0.02em; font-weight: 500;
  color: var(--brand-blue, #2b3b94); margin-bottom: 40px;
}
.identity-title em { font-style: italic; color: #8a9ab5; }
.identity-logos { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.identity-logos img { height: 64px; width: auto; object-fit: contain; opacity: 1; }
.identity-right { padding-top: 62px; }
.identity-lede {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7;
  color: #0a1220; margin-bottom: 32px; max-width: 54ch;
}
.identity-list {
  list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 36px;
}
.identity-list li {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0a1220;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.identity-list li:first-child { border-top: 1px solid var(--rule); }
.identity-cta { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 880px) {
  .identity-grid { grid-template-columns: 1fr; gap: 48px; }
  .identity-right { padding-top: 0; }
}

/* ============= OCEAN SECTION ============= */
.section-ocean {
  background: var(--navy);
  color: var(--paper);
}
.section-ocean .section-head { border-bottom-color: var(--rule-light); }
.section-ocean .cert-axis { border-right-color: var(--rule-light); }
.section-ocean .cert-axis-tick { color: rgba(246,244,239,0.5); }
.section-ocean .cert-stage { border-right-color: rgba(246,244,239,0.12); }
.section-ocean .cert-stage-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(246,244,239,0.12);
  color: var(--paper);
}
.section-ocean .cert-stage-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.4);
}
.section-ocean .cert-stage-meta dt { color: rgba(246,244,239,0.45); }
.section-ocean .cert-rail {
  background: linear-gradient(90deg, rgba(43,59,148,0.8), var(--accent));
}
.section-ocean .cert-stage-peg { border-color: var(--navy); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
  .section { padding: 96px 0; }
  .promos-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 36px 24px 36px 0; }
  .stat:nth-child(2n) { border-right: 0; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .booking-row { grid-template-columns: 1fr 1fr; }
  .booking-swap { display: none; }
  .booking-submit { grid-column: span 2; margin: 20px 28px; }
  .cert { grid-template-columns: 1fr; min-height: 0; }
  .cert-axis { display: none; }
  .cert-rail { display: none; }
  .cert-stages { grid-template-columns: repeat(2, 1fr); gap: 16px; height: auto; padding: 0; }
  .cert-stage { border-right: 0; padding: 0; }
  .cert-stage::before { display: none; }
  .cert-stage-peg { position: static; transform: none; margin-bottom: 12px; }
  .cert-stage-card { position: static; left: auto; right: auto; top: auto; }
}
@media (max-width: 880px) {
  .booking { padding: 32px 0; }
  .booking-tab { padding: 16px 18px; font-size: 11px; }
  .booking-row { grid-template-columns: 1fr; padding: 8px 0; }
  .booking-field { border-right: 0 !important; border-bottom: 1px solid var(--rule); padding: 14px 24px; }
  .booking-field:first-child { padding-left: 24px; }
  .booking-submit { grid-column: auto; margin: 16px 24px 20px; width: calc(100% - 48px); justify-content: center; }
  .booking-foot { flex-direction: column; gap: 8px; padding: 14px 24px; }
  .promos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--rule-light); }
  .stat:last-child { border-bottom: 0; }
  .stats-quote { margin-top: 48px; padding-top: 32px; }
  .stats-quote blockquote { font-size: 24px; }
  .cert-stages { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 12px; }
  .gal-wide { grid-column: span 2; }
  .accred-inner { gap: 32px; }
  .accred-logo img { height: 72px; }
}
@media (max-width: 520px) {
  .section { padding: 72px 0; }
  .promos-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gal-wide, .gal-tall { grid-column: span 1; grid-row: span 1; }
}

/* ============= INSTAGRAM FEED ============= */
.section-insta { background: var(--deep); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  background: var(--navy-2);
  cursor: pointer;
}
.insta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.insta-card:hover img { transform: scale(1.06); }

.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(6,20,35,0.72);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.insta-card:hover .insta-overlay { opacity: 1; }

.insta-type-icon {
  position: absolute; top: 12px; right: 14px;
  font-size: 16px; color: rgba(246,244,238,0.85);
}
.insta-caption {
  font-size: 11px; line-height: 1.5;
  color: var(--paper); opacity: 0.88;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Skeleton loading */
.insta-skeleton {
  aspect-ratio: 1/1;
  background: linear-gradient(90deg,
    rgba(246,244,238,0.05) 25%,
    rgba(246,244,238,0.1) 50%,
    rgba(246,244,238,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Notice states (setup / empty / error) */
.insta-notice {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 80px 24px;
  border: 1px dashed var(--rule-light);
  text-align: center; color: var(--paper);
}
.insta-notice-icon { font-size: 32px; opacity: 0.5; }
.insta-notice p { font-size: 13px; letter-spacing: 0.06em; opacity: 0.65; max-width: 42ch; line-height: 1.6; }
.insta-notice code { opacity: 0.9; background: rgba(246,244,238,0.1); padding: 1px 6px; border-radius: 2px; }
.insta-notice-btn { margin-top: 8px; font-size: 12px; padding: 10px 20px; }

/* Footer row */
.insta-foot {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 16px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--rule-light);
}
.insta-tags {
  font-size: 11px; letter-spacing: 0.14em;
  opacity: 0.4; color: var(--paper);
}

@media (max-width: 880px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .insta-foot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
