:root {
  --navy: #081826;
  --navy-mid: #102D45;
  --navy-deep: #102D45;
  --gold: #F9A826;
  --gold-light: #FFD66B;
  --orange: #d4622a;
  --cream: #faf8f5;
  --warm: #f3ebe0;
  --text: #1c1c1c;
  --muted: #5a6478;
  --line: #e4ddd2;
  --sky-a: #eef4fa;
  --sky-b: #dceaf6;
  --sky-c: #c8ddf0;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #faf8f5;
  --surface-warm: rgba(255, 252, 247, 0.88);
}

@property --sky-a {
  syntax: "<color>";
  inherits: true;
  initial-value: #eef4fa;
}

@property --sky-b {
  syntax: "<color>";
  inherits: true;
  initial-value: #dceaf6;
}

@property --sky-c {
  syntax: "<color>";
  inherits: true;
  initial-value: #c8ddf0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  transition:
    --sky-a 5s ease,
    --sky-b 5s ease,
    --sky-c 5s ease;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--text);
  background: var(--sky-b);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.sky-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    168deg,
    var(--sky-a) 0%,
    var(--sky-b) 42%,
    var(--sky-c) 100%
  );
}

html[data-sky="night"] .masthead {
  background: rgba(13, 21, 40, 0.97);
}

html[data-sky="evening"] .masthead {
  background: rgba(26, 39, 68, 0.94);
}

/* --- MASTHEAD --- */
.masthead {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.masthead-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.masthead-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.masthead-mark {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  box-sizing: border-box;
  display: block;
}

.masthead-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.masthead-crest {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

.masthead-divider {
  width: 1px;
  height: 36px;
  background: rgba(232, 168, 56, 0.45);
}

.masthead-city {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.masthead-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.masthead-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.masthead-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.masthead-nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.masthead-nav-cta:hover {
  background: var(--gold-light) !important;
}

/* --- HERO --- */
.hero-wrap {
  background: transparent;
  border-bottom: none;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 48px rgba(8, 24, 38, 0.1);
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.hero-mark {
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(8, 24, 38, 0.12);
}

.hero-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.15rem;
}

.hero-titles h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.05;
}

.hero-accent {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
  padding-top: 0.35rem;
  border-top: 2px solid var(--gold);
  display: inline-block;
}

.hero-panel .lead {
  color: #243b4f;
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.btn-navy-solid {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.btn-gold-solid {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.btn-navy-solid:hover,
.btn-gold-solid:hover {
  opacity: 0.88;
}

.hero-panel .tag {
  margin-bottom: 0.85rem;
}

.tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
  line-height: 1.65;
}

.hero-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(26, 39, 68, 0.2),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}

.hero-photo > img:first-of-type {
  width: 100%;
  height: auto;
  display: block;
}

.photo-crest-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  height: 52px;
  width: 52px;
  background: rgba(255,255,255,0.93);
  border-radius: 50%;
  padding: 0.35rem;
  border: 1px solid rgba(249, 168, 38, 0.45);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

.quote {
  position: absolute;
  bottom: 1.1rem;
  right: 1.1rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

/* --- SŁOŃCE — wschód i zachód --- */
.sun-wrap {
  padding: 0 1.5rem 3rem;
  background: transparent;
}

.sun-panel {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 56px rgba(8, 24, 38, 0.08);
}

.sun-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.sun-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.sun-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.sun-date {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: capitalize;
}

.sun-phase-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(249, 168, 38, 0.16);
  border: 1px solid rgba(249, 168, 38, 0.4);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  max-width: 11rem;
  text-align: center;
  line-height: 1.35;
}

.sun-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.sun-slot {
  background: rgba(8, 24, 38, 0.03);
  border: 1px solid rgba(8, 24, 38, 0.06);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.sun-slot-main {
  background: linear-gradient(160deg, rgba(249, 168, 38, 0.14) 0%, rgba(249, 168, 38, 0.04) 100%);
  border-color: rgba(249, 168, 38, 0.35);
}

.sun-slot-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.sun-slot-time {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.sun-slot-time-sm {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.sun-slot-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c47a10;
  margin-top: 0.3rem;
}

.sun-status-line {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.25rem;
  font-weight: 500;
}

.sun-footnote {
  text-align: center;
  font-size: 0.72rem;
  color: #8a95a5;
  margin-top: 1rem;
  line-height: 1.65;
}

.sun-footnote a {
  color: var(--navy-mid);
  text-decoration: none;
  font-weight: 600;
}

.sun-footnote a:hover {
  text-decoration: underline;
}

.sun-footnote strong {
  color: var(--navy);
  font-weight: 700;
}

html[data-sky="night"] .sun-panel {
  background: rgba(255, 255, 255, 0.94);
}

html[data-sky="evening"] .sun-slot-main {
  border-color: rgba(249, 168, 38, 0.5);
}

/* --- KONCEPCJE --- */
.concepts-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  background: var(--surface-warm);
  backdrop-filter: blur(8px);
}

.concepts-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.concepts-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.concepts-intro {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 52ch;
  margin: 0.75rem auto 0;
}

.concepts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.concept {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.concept:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 39, 68, 0.12);
}

.concept-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept-num {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
}

.concept-body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.concept-body h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.concept-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

/* --- KORZYŚCI --- */
.benefits-wrap {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 1.5rem;
  margin-top: 0.5rem;
}

.benefits-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.benefit-col h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--gold);
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.benefit-list li:last-child { border-bottom: none; }

.benefit-list .ico {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-list strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.benefit-list p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.benefit-live {
  text-align: center;
}

.live-headline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.55rem;
}

.live-sunset {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
  font-weight: 500;
}

.live-sunset strong {
  color: var(--gold-light);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.live-sunset-link a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.78rem;
}

.live-sunset-link a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.live-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  margin-bottom: 0.85rem;
  border: 2px solid rgba(232, 168, 56, 0.35);
}

.live-frame img {
  width: 100%;
  display: block;
}

.live-url {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  color: #fff;
}

.live-url a {
  color: #fff;
  text-decoration: none;
}

.live-url a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.live-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.88; }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }

.check-list {
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

.check-list li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.meet {
  margin-top: 1.5rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}

.meet a {
  color: #fff;
  font-weight: 700;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meet a:hover {
  color: var(--gold-light);
}

/* --- ROZMOWA / POST SPOŁECZNOŚCIOWY --- */
.voice-wrap {
  background: linear-gradient(168deg, #faf8f5 0%, #f3ebe0 100%);
  padding: 3.5rem 1.5rem 4rem;
  border-top: 3px solid var(--gold);
}

.voice-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.voice-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.voice-lead {
  font-size: 0.95rem;
  color: #243b4f;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 46ch;
}

.voice-compare {
  list-style: none;
  margin-bottom: 1.25rem;
}

.voice-compare li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.voice-compare-hl {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: rgba(249, 168, 38, 0.45) !important;
}

.voice-place {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.voice-text,
.voice-note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
}

.voice-note {
  margin-top: 1rem;
  font-style: italic;
  color: #4a5568;
}

.voice-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 56px rgba(8, 24, 38, 0.08);
}

.voice-question {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.voice-card-hint {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.voice-actions .btn {
  font-size: 0.72rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.voice-actions .voice-share {
  background: var(--navy);
  color: #fff;
  border: none;
}

.voice-actions .voice-copy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.voice-tags {
  font-size: 0.72rem;
  line-height: 1.65;
  color: #8a95a5;
  word-break: break-word;
}

.voice-copy-ok {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d7a4a;
}

.voice-jump {
  margin-bottom: 1rem;
}

.voice-jump-btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(249, 168, 38, 0.18);
  border: 1px solid rgba(249, 168, 38, 0.45);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.voice-jump-btn:hover {
  background: rgba(249, 168, 38, 0.28);
}

/* --- TWOJE ZACHODY --- */
.share-wrap {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 1.5rem 4rem;
  border-top: 3px solid var(--gold);
}

.share-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.share-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.share-head .eyebrow {
  color: rgba(255, 214, 107, 0.9);
}

.share-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.share-intro {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.65;
}

.share-showcase {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.share-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  background: var(--navy);
}

.share-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.share-plaque {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(92%, 420px);
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 0.85rem 1.1rem 0.75rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(8, 24, 38, 0.25);
}

.share-plaque-city {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}

.share-plaque-line {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 0.45rem auto;
}

.share-plaque-tag {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b45309;
  line-height: 1.3;
}

.share-showcase-cap {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.share-simple {
  max-width: 680px;
  margin: 0 auto 2rem;
}

.share-simple-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.25rem;
}

.share-simple-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.share-simple-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  text-align: left;
}

.share-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.share-simple-steps strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.share-simple-steps p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
}

.share-toolbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}

.share-caption-box,
.share-actions-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
}

.share-caption-featured {
  border-color: rgba(249, 168, 38, 0.35);
  background: rgba(249, 168, 38, 0.06);
}

.share-box-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 214, 107, 0.85);
  margin-bottom: 0.75rem;
}

.share-caption {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  white-space: pre-line;
  margin-bottom: 1rem;
  font-style: normal;
  border: none;
  padding: 0;
}

.share-btn {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.share-btn-main {
  font-size: 0.78rem;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.share-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.share-tag {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}

.share-ig-tip {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  margin-bottom: 0.85rem;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.share-ig-tip strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.share-copy-ok {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #7dcea0;
}

.share-btns {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.share-btns .btn {
  text-align: center;
  font-size: 0.75rem;
  padding: 0.65rem 1rem;
}

.share-fb {
  background: #fff;
  color: var(--navy);
  border: none;
}

.share-wa,
.share-mail {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.share-actions-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.share-actions-hint strong {
  color: rgba(255, 255, 255, 0.88);
}

/* --- AUTOR / ADIIT --- */
.author-strip {
  background: var(--surface-warm);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 3rem 1.5rem;
  backdrop-filter: blur(6px);
}

.author-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.author-eyebrow {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.author-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.65rem 1.35rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.author-link:hover {
  background: var(--navy);
  color: #fff;
}

.author-link::after {
  content: "→";
  font-size: 0.9em;
}

/* --- FOOTER --- */
.site-footer {
  margin-top: 0;
}

.footer-pano {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.footer-bar {
  background: var(--navy-deep);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-crest {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}

.footer-hash {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .concepts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-live { order: -1; }
  .voice-inner { grid-template-columns: 1fr; }
  .voice-card { order: -1; }
  .share-toolbox { grid-template-columns: 1fr; }
  .share-plaque { bottom: 0.75rem; padding: 0.65rem 0.85rem; }
  .masthead-nav a:not(.masthead-nav-cta) { display: none; }
  .masthead-nav-cta { font-size: 0.62rem; padding: 0.4rem 0.55rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-navy-solid,
  .hero-cta .btn-gold-solid { text-align: center; }
  .masthead-sub { font-size: 0.62rem; }
  .footer-main { flex-direction: column; }
  .sun-timeline { grid-template-columns: repeat(2, 1fr); }
  .sun-slot-main { order: -1; grid-column: span 2; }
}

@media (max-width: 540px) {
  .concepts-grid { grid-template-columns: 1fr; }
  .hero-brand { flex-wrap: wrap; }
  .sun-timeline { grid-template-columns: 1fr; }
  .sun-slot-main { grid-column: span 1; }
}
