/* Every Block Has a Story — shared styles */

:root {
  --ink: #14150f;
  --ink-soft: #1c1d14;
  --panel: #21221a;
  --cream: #f3ead8;
  --cream-dim: #d9cfb8;
  --paper: #f1e8d7;
  --paper-alt: #e9dfc9;
  --orange: #c1552c;
  --orange-dark: #9c4322;
  --olive: #56643d;
  --olive-light: #7c8a5c;
  --gold: #c99a44;
  --line: rgba(243, 234, 216, 0.14);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--cream);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 234, 216, 0.4);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(243,234,216,0.06); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: rgba(20,21,15,0.2);
}
.btn-dark:hover { background: #000; }

.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 21, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo .logo-main span:nth-child(1) { color: var(--cream); }
.logo .logo-main span:nth-child(2) { color: var(--orange); }
.logo .logo-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--olive-light);
  font-weight: 600;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
}
.main-nav a {
  color: var(--cream-dim);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--cream);
  border-color: var(--orange);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(243,234,216,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
}

.header-actions .btn-primary span.short { display: none; }

.nav-account-link {
  color: var(--cream-dim);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-account-link:hover, .nav-account-link.active { color: var(--cream); border-color: var(--orange); }

@media (max-width: 900px) {
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; background: var(--ink-soft); flex-direction: column; padding: 20px 32px; gap: 16px; border-bottom: 1px solid var(--line); display: none; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn-primary span.long { display: none; }
  .header-actions .btn-primary span.short { display: inline; }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 75% 20%, #24291b 0%, var(--ink) 55%);
  padding: 70px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { display: block; margin-bottom: 14px; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
}
.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--cream-dim);
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.hero-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-map svg { width: 100%; height: 100%; }
.worldmap-base {
  position: absolute;
  inset: 6%;
  background: linear-gradient(100deg, var(--gold) 0%, var(--olive-light) 24%, var(--olive) 46%, #7a4a2a 68%, var(--gold) 100%);
  -webkit-mask-image: url('https://raw.githubusercontent.com/cablop/simple-world-map-by-continents/master/world-map.min.svg');
  mask-image: url('https://raw.githubusercontent.com/cablop/simple-world-map-by-continents/master/world-map.min.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.map-credit {
  position: absolute;
  bottom: 6px;
  right: 10px;
  font-size: 0.6rem;
  color: var(--cream-dim);
  opacity: 0.45;
  letter-spacing: 0.02em;
}
.map-pin {
  position: absolute;
  display: block;
  width: 16px; height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--pc, var(--orange));
  border: 2px solid var(--cream);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.45);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.map-pin:hover {
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.25);
  box-shadow: 0 5px 14px rgba(0,0,0,0.6);
}
.map-pin::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
}
.hero-tagline {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  text-align: right;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.hero-photo-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 190px;
  overflow: hidden;
}
.hero-photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}

/* Section framing */
.section { padding: 78px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); }
.section-olive { background: var(--olive); color: var(--cream); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-light .section-head p { color: #56513f; max-width: 460px; }

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #333;
  box-shadow: var(--shadow);
}
.story-card .story-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-card .story-media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--olive), var(--ink-soft));
}
.story-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(10,10,6,0.92) 100%);
}
.story-loc {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(20,21,15,0.75);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.play-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(243,234,216,0.9);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.story-body {
  position: relative;
  z-index: 2;
  padding: 16px;
}
.story-body h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--cream); }
.story-user {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--cream-dim);
}
.story-user .avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--ink);
}
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* Translations / bilingual banner */
.speech-cluster { position: relative; height: 220px; }
.bubble {
  position: absolute;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.bubble.b1 { top: 0; left: 20px; background: var(--orange); color: var(--cream); }
.bubble.b2 { top: 15px; right: 0; background: var(--olive-light); color: var(--ink); }
.bubble.b3 { bottom: 30px; left: 0; }
.bubble.b4 { bottom: 0; right: 30px; background: var(--orange-dark); color: var(--cream); }
.globe-center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px dashed rgba(243,234,216,0.4);
  display: flex; align-items: center; justify-content: center;
}

.lang-list { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
.lang-list a { display: flex; align-items: center; gap: 10px; color: var(--cream-dim); }
.lang-list a:hover { color: var(--cream); }

/* Shop teaser */
.shop-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.shirt-frame {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
}
.shirt-photo-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}
.shirt-photo-frame img.shirt-photo {
  width: 100%;
  display: block;
}
.shirt-design-overlay {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 40%;
  transform: translate(-50%, 0);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  pointer-events: none;
}
.shirt-design-overlay svg { width: 100%; height: auto; display: block; }
.feature-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.feature-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--paper);
  font-size: 0.9rem;
}
.feature-icon.olive { background: var(--olive); }
.feature-icon.orange { background: var(--orange); }
.feature-icon.gold { background: var(--gold); }

/* Footer CTA */
.footer-cta {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer.site-footer {
  background: var(--ink-soft);
  padding: 50px 0 26px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: var(--cream); font-size: 0.9rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* Generic page hero (inner pages) */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #24291b 0%, var(--ink) 100%);
  text-align: left;
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 700px; }
.page-hero p { color: var(--cream-dim); max-width: 600px; font-size: 1.05rem; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(243,234,216,0.25);
  font-size: 0.85rem;
  cursor: pointer;
  background: transparent;
  color: var(--cream-dim);
}
.chip.active, .chip:hover { background: var(--orange); color: var(--cream); border-color: var(--orange); }

/* Forms */
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 620px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--cream-dim); }
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(243,234,216,0.2);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 0.78rem; color: var(--cream-dim); opacity: 0.7; margin-top: 6px; }
.dropzone {
  border: 2px dashed rgba(243,234,216,0.3);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: var(--cream-dim);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.dropzone:hover { border-color: var(--orange); background: rgba(193,85,44,0.06); }
.dropzone.has-file { border-color: var(--olive-light); color: var(--cream); }

/* Product page */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.product-gallery { background: var(--ink); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: center; }
.price { font-size: 1.8rem; font-weight: 700; color: var(--orange); font-family: var(--serif); margin-bottom: 14px; }
.size-row { display: flex; gap: 8px; margin: 18px 0; }
.size-swatch {
  width: 42px; height: 42px; border-radius: 8px;
  border: 1px solid rgba(243,234,216,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem;
}
.size-swatch.selected, .size-swatch:hover { border-color: var(--orange); color: var(--orange); }
.info-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.info-box strong { color: var(--cream); }

/* Map page */
.map-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.map-list a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.92rem;
}
.map-list a:hover { border-color: var(--orange); }
.map-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 10px; }

/* Contact / about */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 30px 0; }
.stat-box { text-align: center; padding: 20px; background: var(--panel); border-radius: 12px; border: 1px solid var(--line); }
.stat-box .num { font-family: var(--serif); font-size: 2rem; color: var(--orange); }
.stat-box .label { font-size: 0.8rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.06em; }

.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--olive);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .two-col { grid-template-columns: 1fr; }
  .map-list { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .map-list { grid-template-columns: 1fr; }
  .hero-photo-strip { grid-template-columns: repeat(2,1fr); height: auto; }
}
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--cream);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 234, 216, 0.4);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(243,234,216,0.06); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: rgba(20,21,15,0.2);
}
.btn-dark:hover { background: #000; }

.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 21, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo .logo-main span:nth-child(1) { color: var(--cream); }
.logo .logo-main span:nth-child(2) { color: var(--orange); }
.logo .logo-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--olive-light);
  font-weight: 600;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
}
.main-nav a {
  color: var(--cream-dim);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--cream);
  border-color: var(--orange);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(243,234,216,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
}

.header-actions .btn-primary span.short { display: none; }

.nav-account-link {
  color: var(--cream-dim);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-account-link:hover, .nav-account-link.active { color: var(--cream); border-color: var(--orange); }

@media (max-width: 900px) {
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; background: var(--ink-soft); flex-direction: column; padding: 20px 32px; gap: 16px; border-bottom: 1px solid var(--line); display: none; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn-primary span.long { display: none; }
  .header-actions .btn-primary span.short { display: inline; }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 75% 20%, #24291b 0%, var(--ink) 55%);
  padding: 70px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { display: block; margin-bottom: 14px; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
}
.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--cream-dim);
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.hero-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-map svg { width: 100%; height: 100%; }
.worldmap-base {
  position: absolute;
  inset: 6%;
  background: linear-gradient(100deg, var(--gold) 0%, var(--olive-light) 24%, var(--olive) 46%, #7a4a2a 68%, var(--gold) 100%);
  -webkit-mask-image: url('https://raw.githubusercontent.com/cablop/simple-world-map-by-continents/master/world-map.min.svg');
  mask-image: url('https://raw.githubusercontent.com/cablop/simple-world-map-by-continents/master/world-map.min.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.map-credit {
  position: absolute;
  bottom: 6px;
  right: 10px;
  font-size: 0.6rem;
  color: var(--cream-dim);
  opacity: 0.45;
  letter-spacing: 0.02em;
}
.map-pin {
  position: absolute;
  display: block;
  width: 16px; height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--pc, var(--orange));
  border: 2px solid var(--cream);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.45);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.map-pin:hover {
  transform: translate(-50%, -100%) rotate(-45deg) scale(1.25);
  box-shadow: 0 5px 14px rgba(0,0,0,0.6);
}
.map-pin::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
}
.hero-tagline {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  text-align: right;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.hero-photo-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 190px;
  overflow: hidden;
}
.hero-photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}

/* Section framing */
.section { padding: 78px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); }
.section-olive { background: var(--olive); color: var(--cream); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-light .section-head p { color: #56513f; max-width: 460px; }

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #333;
  box-shadow: var(--shadow);
}
.story-card .story-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-card .story-media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--olive), var(--ink-soft));
}
.story-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(10,10,6,0.92) 100%);
}
.story-loc {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(20,21,15,0.75);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.play-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(243,234,216,0.9);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.story-body {
  position: relative;
  z-index: 2;
  padding: 16px;
}
.story-body h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--cream); }
.story-user {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--cream-dim);
}
.story-user .avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--ink);
}
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* Translations / bilingual banner */
.speech-cluster { position: relative; height: 220px; }
.bubble {
  position: absolute;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.bubble.b1 { top: 0; left: 20px; background: var(--orange); color: var(--cream); }
.bubble.b2 { top: 15px; right: 0; background: var(--olive-light); color: var(--ink); }
.bubble.b3 { bottom: 30px; left: 0; }
.bubble.b4 { bottom: 0; right: 30px; background: var(--orange-dark); color: var(--cream); }
.globe-center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px dashed rgba(243,234,216,0.4);
  display: flex; align-items: center; justify-content: center;
}

.lang-list { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
.lang-list a { display: flex; align-items: center; gap: 10px; color: var(--cream-dim); }
.lang-list a:hover { color: var(--cream); }

/* Shop teaser */
.shop-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.shirt-frame {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
}
.shirt-photo-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}
.shirt-photo-frame img.shirt-photo {
  width: 100%;
  display: block;
}
.shirt-design-overlay {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 40%;
  transform: translate(-50%, 0);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  pointer-events: none;
}
.shirt-design-overlay svg { width: 100%; height: auto; display: block; }
.feature-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.feature-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--paper);
  font-size: 0.9rem;
}
.feature-icon.olive { background: var(--olive); }
.feature-icon.orange { background: var(--orange); }
.feature-icon.gold { background: var(--gold); }

/* Footer CTA */
.footer-cta {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer.site-footer {
  background: var(--ink-soft);
  padding: 50px 0 26px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}
.footer-grid h4 { color: var(--cream); font-size: 0.9rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* Generic page hero (inner pages) */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #24291b 0%, var(--ink) 100%);
  text-align: left;
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 700px; }
.page-hero p { color: var(--cream-dim); max-width: 600px; font-size: 1.05rem; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(243,234,216,0.25);
  font-size: 0.85rem;
  cursor: pointer;
  background: transparent;
  color: var(--cream-dim);
}
.chip.active, .chip:hover { background: var(--orange); color: var(--cream); border-color: var(--orange); }

/* Forms */
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 620px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--cream-dim); }
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(243,234,216,0.2);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 0.78rem; color: var(--cream-dim); opacity: 0.7; margin-top: 6px; }
.dropzone {
  border: 2px dashed rgba(243,234,216,0.3);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: var(--cream-dim);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.dropzone:hover { border-color: var(--orange); background: rgba(193,85,44,0.06); }
.dropzone.has-file { border-color: var(--olive-light); color: var(--cream); }

/* Product page */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.product-gallery { background: var(--ink); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: center; }
.price { font-size: 1.8rem; font-weight: 700; color: var(--orange); font-family: var(--serif); margin-bottom: 14px; }
.size-row { display: flex; gap: 8px; margin: 18px 0; }
.size-swatch {
  width: 42px; height: 42px; border-radius: 8px;
  border: 1px solid rgba(243,234,216,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem;
}
.size-swatch.selected, .size-swatch:hover { border-color: var(--orange); color: var(--orange); }
.info-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.info-box strong { color: var(--cream); }

/* Map page */
.map-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.map-list a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.92rem;
}
.map-list a:hover { border-color: var(--orange); }
.map-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 10px; }

/* Contact / about */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 30px 0; }
.stat-box { text-align: center; padding: 20px; background: var(--panel); border-radius: 12px; border: 1px solid var(--line); }
.stat-box .num { font-family: var(--serif); font-size: 2rem; color: var(--orange); }
.stat-box .label { font-size: 0.8rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.06em; }

.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--olive);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .two-col { grid-template-columns: 1fr; }
  .map-list { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .map-list { grid-template-columns: 1fr; }
  .hero-photo-strip { grid-template-columns: repeat(2,1fr); height: auto; }
}
