/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: #f0f0f0;

    background: radial-gradient(
        circle at center,
        #1a0f2b 0%,
        #12081f 50%,
        #0b0613 100%
    );

    min-height: 100vh;
}

.reverse {
    flex-direction: row-reverse;
}

/* Shared page container (use on no-hero pages too) */
.bss-container{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 32px;

  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 900px){
  .bss-container{
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 18px;
  }
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(20, 20, 25, 0.55); /* translucent dark */
    backdrop-filter: blur(6px); /* modern glass effect */
    -webkit-backdrop-filter: blur(6px);

    border-bottom: 1px solid rgba(180, 120, 255, 0.15); /* subtle purple line */
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 120px;     /* fixed height instead of width */
    width: auto;
    display: block;
}


/* Navigation */
.main-nav a {
    text-decoration: none;
    color: #d8d8d8;
    margin-left: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #b77cff; /* purple highlight */
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(120, 60, 200, 0.2),
        rgba(0, 0, 0, 0.75)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-bss {
    padding: 100px 10%;
    background: linear-gradient(180deg, #1b1028 0%, #0e0818 100%);
}

.bss-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.bss-cover img {
    width: 320px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border-radius: 6px;
}

.bss-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bss-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.85;
}

.bss-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    border: 1px solid #8f7bd1;
    color: #d9d4ff;
    text-decoration: none;
    transition: 0.3s ease;
}

.bss-button:hover {
    background: rgba(143,123,209,0.15);
}

.in100-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    display: block;
}

.site-footer{
  margin-top: 80px;
  border-top: 1px solid rgba(180, 160, 220, 0.18);

  /* “glass” footer */
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* subtle purple glow like ink */
  box-shadow: 0 -30px 80px rgba(120, 70, 180, 0.10);
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 20px;

  display: grid;
  grid-template-columns: 220px 1fr auto; /* image | text | nav */
  gap: 26px;
  align-items: center;
}

/* The image “fills the whole space” of its column */
.footer-art{
  width: 220px;
  height: 120px;          /* adjust taller/shorter to taste */
  border-radius: 14px;
  overflow: hidden;
  opacity: 0.95;
}

.footer-art img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* THIS is the magic */
  display: block;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Brand column */
.footer-brand strong{
  display: block;
  letter-spacing: 0.4px;
}

.footer-brand span{
  display: block;
  opacity: 0.75;
  margin-top: 4px;
}

.footer-brand img{
  width: 44px;
  height: auto;
  opacity: 0.95;
}

.footer-brand-text strong{
  display: block;
  letter-spacing: 0.4px;
}

.footer-brand-text span{
  display: block;
  opacity: 0.75;
  font-size: 0.95rem;
  margin-top: 2px;
}

.footer-nav{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a{
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 140ms ease, color 140ms ease;
}

.footer-nav a:hover{
  background: rgba(140, 90, 200, 0.16);
  color: rgba(255,255,255,0.95);
}

.footer-bottom{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px 22px;

  display: flex;
  gap: 10px;
  align-items: center;

  opacity: 0.75;
  font-size: 0.95rem;
}

.footer-bottom a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

.footer-sep{
  opacity: 0.45;
}

.footer-copy{
  margin-top: 12px;
  opacity: 0.6;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-art{
    width: 100%;
    height: 160px; /* looks great on mobile */
  }

  .footer-nav{
    justify-content: flex-start;
  }
}

/* Page base */
.page {
  min-height: 100vh;
}

.bss-page {
  background:
    radial-gradient(circle at 50% 35%, rgba(122, 68, 176, 0.28), rgba(0, 0, 0, 0.92) 62%),
    linear-gradient(to bottom, rgba(10, 7, 18, 0.95), rgba(5, 4, 10, 0.98));
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh; /* change to 100vh if you want full-screen */
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 0.75rem;
}

.hero-sub {
  opacity: 0.9;
  margin: 0 0 0.75rem;
}

.hero-tagline {
  opacity: 0.85;
  margin: 0 0 1.75rem;
}

/* BSS Hero background: starfield/cover texture */
.hero-bss::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Use your cover background starfield (prefer a cropped "stars only" image) */
  background: url("/assets/img/bss-stars.png") center / cover no-repeat;

  /* Gives it that cinematic “depth” */
  filter: blur(2px) saturate(1.1) contrast(1.05);
  transform: scale(1.03);
  opacity: 0.55;
}


.hero-bss::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(160, 92, 220, 0.28), rgba(0, 0, 0, 0.90) 68%),
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.80));
  z-index: 1;
}


/* Sections */
.section {
  padding: 4rem 0;
}

.section-muted {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Layout helpers */
.container {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media .cover {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Crew grid */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.crew {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Themes list */
.theme-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.theme-list li {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Buttons */
.actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Mobile */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .crew-grid { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
}

a {
  color: rgba(230, 220, 255, 0.92);
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(160, 92, 220, 0.55);
}

.bss-retailers {
  padding: 80px 0;
  text-align: center;
}

.retail-subline {
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Major buttons */
.retail-major {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.store-button {
  display: inline-block;
  padding: 16px 28px;
  border: 1px solid rgba(160, 92, 220, 0.6);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
  text-align: center;
  min-width: 180px;
}

.store-button:hover {
  background: rgba(160, 92, 220, 0.2);
}

.store-button .format {
  display: block;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 6px;
}

/* Minor retailer layout */
.retail-more h3 {
  margin-bottom: 30px;
  font-weight: 500;
}

.retail-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.retail-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.retail-column a {
  opacity: 0.85;
  transition: 0.2s ease;
}

.retail-column a:hover {
  opacity: 1;
}

.format-inline {
  opacity: 0.6;
  font-size: 0.85rem;
}

.bss-retailers {
  padding: 80px 0;
  text-align: center;
}

.retail-subline {
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Major buttons */
.retail-major {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.store-button {
  display: inline-block;
  padding: 16px 28px;
  border: 1px solid rgba(160, 92, 220, 0.6);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
  text-align: center;
  min-width: 180px;
}

.store-button:hover {
  background: rgba(160, 92, 220, 0.2);
}

.store-button .format {
  display: block;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 6px;
}

/* Minor retailer layout */
.retail-more h3 {
  margin-bottom: 30px;
  font-weight: 500;
}

/* Retail columns: responsive */
@media (max-width: 900px) {
  .retail-columns {
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 14px;
  }

  .retail-column {
    flex: 1 1 260px;   /* becomes 2-ish columns depending on screen width */
    min-width: 220px;
  }
}

@media (max-width: 520px) {
  .retail-column {
    flex: 1 1 100%;    /* single column on very small screens */
    text-align: center;
  }
}

.retail-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.retail-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.retail-column a {
  opacity: 0.85;
  transition: 0.2s ease;
}

.retail-column a:hover {
  opacity: 1;
}

.format-inline {
  opacity: 0.6;
  font-size: 0.85rem;
}

.future-hero {
  padding: 140px 0 100px;
  text-align: center;
}

.future-intro,
.future-themes,
.future-latest,
.future-philosophy,
.future-follow {
  padding: 80px 0;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.theme-card {
  padding: 30px;
  border: 1px solid rgba(160, 92, 220, 0.4);
  border-radius: 14px;
  background: rgba(0,0,0,0.25);
  transition: 0.25s ease;
}

.theme-card:hover {
  background: rgba(160, 92, 220, 0.1);
}

.philosophy-line {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Make images behave by default (prevents giant raw-size images) */
img {
  max-width: 100%;
  height: auto;
}

/* In 100 Years – Latest Article card */
.future-latest {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.feature {
  background: rgba(20, 20, 25, 0.55);
  border: 1px solid rgba(180, 120, 255, 0.15);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.feature-image {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;

  /* keep your "banner" shape if you want */
  aspect-ratio: 16 / 9;

  /* optional: makes the extra space look intentional */
  background: rgba(10, 10, 14, 0.35);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ✅ no cropping */
  display: block;
}

/* Optional: slightly shorter banner on small screens */
@media (max-width: 700px) {
  .feature-image { aspect-ratio: 4 / 3; }
}

/* =========================
   In 100 Years — Blog Layout
   ========================= */

.blog-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.blog-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.blog-kicker {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  opacity: 0.9;
}

.blog-crumbs {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 6px;
}

.blog-crumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.blog-crumbs a:hover {
  border-bottom-color: rgba(200, 170, 255, 0.6);
}

.blog-crumb-sep {
  margin: 0 8px;
  opacity: 0.55;
}

.blog-crumb-current {
  opacity: 0.9;
}

/* Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

/* Shared glass panel (if you already have one, keep yours — this is safe) */
.glass-panel {
  background: rgba(12, 10, 18, 0.55);
  border: 1px solid rgba(180, 140, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 88px; /* adjust if your header is taller/shorter */
}

.blog-sidebar-panel {
  padding: 18px;
}

.blog-sidebar-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  opacity: 0.95;
}

.blog-list {
  display: grid;
  gap: 10px;
}

.blog-list-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(180, 140, 255, 0.12);
  background: rgba(10, 8, 14, 0.35);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.blog-list-item:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 170, 255, 0.28);
  background: rgba(14, 10, 18, 0.45);
}

.blog-list-item.is-active {
  border-color: rgba(210, 180, 255, 0.45);
  background: rgba(18, 12, 24, 0.55);
}

.blog-list-item-title {
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.25;
}

.blog-list-item-meta {
  margin-top: 4px;
  font-size: 0.86rem;
  opacity: 0.75;
}

.blog-sidebar-actions {
  margin-top: 14px;
}

/* Main article panel */
.blog-article-panel {
  padding: 26px;
}

.blog-article-header {
  margin-bottom: 14px;
}

.blog-article-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-article-meta {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-dot {
  opacity: 0.55;
}

.blog-article-summary {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 70ch;
}

/* Featured image */
.blog-hero-figure {
  margin: 18px 0 22px;
}

.blog-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(180, 140, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

/* Article content typography */
.blog-content {
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 76ch;
}

.blog-content h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.blog-content p {
  margin: 12px 0;
  opacity: 0.95;
}

.blog-content blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(210, 180, 255, 0.55);
  background: rgba(10, 8, 14, 0.35);
  border-radius: 10px;
  opacity: 0.95;
}

.blog-next {
  margin-top: 22px;
  opacity: 0.9;
}

/* Bottom actions */
.blog-article-footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(180, 140, 255, 0.12);
}

.blog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Newsletter block */
.blog-newsletter {
  margin-top: 18px;
  padding: 18px 20px;
}

.blog-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.blog-newsletter-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.blog-newsletter-text {
  margin: 0;
  opacity: 0.85;
}

.blog-newsletter-actions {
  display: flex;
  gap: 10px;
}

/* Button size variants (safe if you already have bss-button) */
.bss-button--small {
  padding: 10px 14px;
  font-size: 0.95rem;
}

.bss-button--ghost {
  background: transparent;
}

/* Responsive */
@media (max-width: 980px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-shell {
    padding-top: 28px;
  }
}

.in100-jump {
  margin-top: 14px;
  opacity: 0.9;
}

.in100-inline-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 170, 255, 0.55);
  padding-bottom: 2px;
}

.in100-inline-link:hover {
  border-bottom-color: rgba(220, 200, 255, 0.85);
}

.jump-line{
  margin-top: 24px;
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: center;
}

.jump-link{
  color: #e9defa;
  text-decoration: underline;
  text-decoration-color: rgba(166, 120, 255, 0.6);
  text-underline-offset: 4px;
}

.jump-link:hover{
  text-decoration-color: rgba(166, 120, 255, 0.95);
}

.blog-summary-block {
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0 2rem 0;
}

.blog-summary-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.blog-article-image {
  margin: 2rem 0;
  border-radius: 14px;
  overflow: hidden;
}

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

.blog-article-image figcaption {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.5rem;
}

/* -----------------------------
   About Page
------------------------------ */

.about-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.about-panel {
  padding: 2rem;
}

.about-header {
  margin-bottom: 1.25rem;
}

.about-title {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.about-subtitle {
  margin: 0.5rem 0 0;
  opacity: 0.85;
}

.about-media {
  float: right;
  width: min(340px, 40%);
  margin: 0.25rem 0 1rem 1.5rem;
  text-align: center;
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(180, 130, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 12px 30px rgba(0,0,0,0.35);
}

.about-media figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.about-body p {
  line-height: 1.65;
  margin: 0.85rem 0;
}

.about-body h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.about-lead {
  font-size: 1.05rem;
  opacity: 0.95;
}

.about-divider {
  border: 0;
  height: 1px;
  margin: 1.5rem 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(180, 130, 255, 0.45),
    transparent
  );
}

/* Mobile: don’t wrap; stack */
@media (max-width: 800px) {
  .about-media {
    float: none;
    width: min(420px, 100%);
    margin: 0 auto 1.25rem;
  }
}

.about-section-title {
  margin-top: 1.25rem;
}

.contact-block {
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(0,0,0,0.10);
}

.contact-email {
  margin: 0;
  font-weight: 600;
}

.contact-email a {
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 140, 255, 0.55);
}

.contact-email a:hover {
  border-bottom-color: rgba(180, 140, 255, 0.95);
}

.contact-note {
  margin: 0.4rem 0 0;
  opacity: 0.85;
}

.contact-social {
  margin: 0.75rem 0 0.25rem;
  padding-left: 1.1rem;
}

.contact-social li {
  margin: 0.25rem 0;
}

.contact-social a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.contact-social a:hover {
  border-bottom-color: rgba(180, 140, 255, 0.75);
}

.contact-closing {
  margin-top: 1rem;
}


:root {
  --header-offset: 120px;
}

.no-hero {
  padding-top: var(--header-offset);
}

@media (max-width: 800px) {
  :root {
    --header-offset: 150px;
  }
}

/* Hero action buttons (Discover + Buy) */
.bss-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:18px;
}

/* If your base .bss-button already has padding/border-radius/etc,
   these just set “filled vs outline” styling. */
.bss-button--primary{
  background: var(--accent, #7c5cff);
  color:#fff;
  border:1px solid transparent;
}

.bss-button--primary:hover{
  filter:brightness(1.07);
}

.bss-button--ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.28);
  color: inherit;
}

.bss-button--ghost:hover{
  border-color: rgba(255,255,255,.45);
}

/* Mobile: stack nicely */
@media (max-width: 560px){
  .bss-hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }
  .bss-hero-actions .bss-button{
    width:100%;
    text-align:center;
  }
}

/* In 100 Years — Newsletter */
.in100-newsletter{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.in100-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.in100-form{
  margin-top: 16px;
}

.in100-fieldset{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 14px;
  background: rgba(0,0,0,.10);
}

.in100-legend{
  padding: 0 8px;
  opacity: .9;
}

.in100-radio{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.in100-radio:hover{
  background: rgba(255,255,255,.06);
}

.in100-radio input{
  margin-top: 3px;
}

.in100-hint{
  display: block;
  font-size: .95rem;
  opacity: .85;
  margin-top: 2px;
}

.in100-row{
  margin-top: 14px;
}

.in100-label{
  display: block;
  margin-bottom: 6px;
  opacity: .9;
}

.in100-input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: inherit;
  outline: none;
}

.in100-input:focus{
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 0 0 3px rgba(180,120,255,.18);
}

.in100-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.in100-fineprint{
  margin-top: 12px;
  font-size: .95rem;
  opacity: .8;
}

@media (max-width: 900px){
  .in100-newsletter{
    grid-template-columns: 1fr;
  }
}

.site-main.no-hero {
  padding-top: 140px; /* was 120px */
}

.section-in100 .bss-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Prevent hero sections from sliding under the absolute header */
.hero,
.future-hero {
  padding-top: calc(var(--header-offset) + 2.5rem);
}

/* Optional: tighten on desktop if you feel it becomes too tall */
@media (min-width: 901px) {
  .hero {
    padding-top: calc(120px + 3rem);
  }
  .future-hero {
    padding-top: 140px; /* keep your original look */
  }
}

/* Mobile header layout */
@media (max-width: 900px) {

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-header .logo {
    margin-bottom: 10px;
  }

  .site-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 20px;
  justify-content: center;
  text-align: center;
}

}

/* ------------------------------------------------------------
   Mobile header layout: logo on top, nav below (mobile only)
   Add this at the VERY END of style.css
------------------------------------------------------------ */
@media (max-width: 720px) {
  .header-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    text-align: center;
  }

  .logo img {
    height: 64px !important;   /* shrink logo for mobile */
    width: auto !important;
  }

  .main-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 16px !important; /* row/column gap */
    padding-bottom: 6px;
  }

  .main-nav a {
    margin-left: 0 !important; /* kill the desktop spacing */
    padding: 6px 8px;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Optional: if content is creeping under the absolute header */
  .site-main {
    padding-top: 140px;
  }
}
