/* ==========================================================================
   Aarnika Silks — brand tokens
   ========================================================================== */
:root {
  --maroon-950: #4a0e17;
  --maroon-900: #5c1220;
  --maroon-800: #6f1626;
  --maroon-700: #8a1c2f;
  --gold-600: #a9822f;
  --gold-500: #c19a4a;
  --gold-400: #d4b06b;
  --cream-100: #fbf5ea;
  --cream-200: #f6ecd9;
  --ivory: #fffdf8;
  --ink: #2a1b12;
  --ink-soft: #5a4b40;
  --line: #e6d9bf;
  --white: #ffffff;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Poppins", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius: 2px;
  --shadow-card: 0 10px 30px rgba(74, 14, 23, 0.08);
  --shadow-lift: 0 18px 40px rgba(74, 14, 23, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
}

.italic-accent {
  font-style: italic;
  color: var(--maroon-800);
  font-weight: 500;
}

p { line-height: 1.7; color: var(--ink-soft); margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon-900);
  color: var(--white);
  border-color: var(--maroon-900);
}
.btn-primary:hover { background: var(--maroon-950); }
.btn-outline {
  background: transparent;
  color: var(--maroon-900);
  border-color: var(--maroon-900);
}
.btn-outline:hover { background: var(--maroon-900); color: var(--white); }
.btn-gold {
  background: var(--gold-500);
  color: var(--maroon-950);
  border-color: var(--gold-500);
}
.btn-gold:hover { background: var(--gold-400); }
.btn-sm { padding: 10px 18px; font-size: 11.5px; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar {
  background: var(--maroon-900);
  color: var(--cream-200);
  font-size: 12.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar-left {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; opacity: 0.92; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  font-size: 12px;
}
.topbar-social a:hover { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  background: var(--maroon-900);
  border-bottom: 1px solid var(--maroon-950);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { max-height: 52px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  color: var(--gold-400);
  line-height: 1.05;
}
.logo-text .top {
  font-size: 24px;
  letter-spacing: 0.12em;
  font-weight: 700;
  display: block;
}
.logo-text .bottom {
  font-size: 11px;
  letter-spacing: 0.5em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 26px; flex-wrap: nowrap; }
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-400); border-color: var(--gold-400); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn-primary {
  background: var(--gold-500);
  color: var(--maroon-950);
  border-color: var(--gold-500);
}
.header-actions .btn-primary:hover { background: var(--gold-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

/* ==========================================================================
   Hero / slider
   ========================================================================== */
.hero {
  position: relative;
  background: var(--cream-100);
  overflow: hidden;
}
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.is-active { display: block; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  align-items: stretch;
  min-height: 560px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 64px 48px 64px 32px;
  max-width: 560px;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 58px);
}
.hero-copy p { max-width: 420px; font-size: 15.5px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 6px; }

.hero-media {
  position: relative;
  min-height: 320px;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 5;
  color: var(--maroon-900);
  font-size: 16px;
}
.hero-nav.prev { left: 24px; }
.hero-nav.next { right: 24px; }
.hero-nav:hover { background: var(--maroon-900); color: var(--white); }

.hero-dots {
  position: absolute;
  left: 32px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(90, 30, 30, 0.28);
  border: none;
  padding: 0;
}
.hero-dots button.is-active { background: var(--maroon-800); width: 22px; border-radius: 5px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 44px 24px 32px; max-width: none; }
  .hero-media { min-height: 340px; order: -1; }
  .hero-dots { left: 50%; transform: translateX(-50%); }
}

/* ==========================================================================
   Section shell
   ========================================================================== */
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 3vw, 36px); margin-top: 10px; }
.section-center { text-align: center; }
.section-center .section-head { flex-direction: column; align-items: center; text-align: center; }

/* ==========================================================================
   Shop by collection
   ========================================================================== */
.collections {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  box-shadow: var(--shadow-card);
  background: var(--maroon-900);
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 10px 40px;
  text-align: center;
  background: linear-gradient(to top, rgba(74,14,23,0.85), rgba(74,14,23,0));
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.collection-card .icon {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translate(-50%, 50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--maroon-900);
  border: 2px solid var(--gold-400);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}

@media (max-width: 1080px) {
  .collections { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .collections { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Tabs + product cards ("The Aarnika Edit")
   ========================================================================== */
.tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab-btn {
  background: none; border: none;
  padding: 10px 2px 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-btn.is-active { color: var(--maroon-800); border-color: var(--maroon-800); }

.product-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.product-thumb { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--maroon-800);
  border: none;
}
.product-info { padding: 14px 14px 18px; }
.product-info .name { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.product-info .price { font-family: var(--font-display); font-size: 16px; color: var(--maroon-800); font-weight: 600; }

@media (max-width: 1080px) { .product-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .product-row { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Tradition / story split section
   ========================================================================== */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}
.story-media { min-height: 420px; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.story-copy h2 { font-size: clamp(26px, 3vw, 34px); }
.story-stats {
  display: flex;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.story-stat {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
.story-stat:last-child { border-right: none; }
.story-stat .stat-icon { color: var(--gold-500); font-size: 24px; margin-bottom: 10px; }
.story-stat .stat-title { font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.story-stat .stat-sub { font-size: 11.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; }
  .story-copy { padding: 40px 24px; }
  .story-stats { flex-direction: column; gap: 18px; }
  .story-stat { border-right: none; padding-right: 0; }
}

/* ==========================================================================
   Visit-in-person section
   ========================================================================== */
.visit-section { background: var(--cream-200); }
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.visit-copy h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 8px; }
.visit-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.visit-details { display: flex; flex-direction: column; gap: 16px; }
.visit-row { display: flex; gap: 12px; font-size: 13.5px; }
.visit-row .label { font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 11.5px; color: var(--gold-600); display: block; margin-bottom: 3px; }
.visit-row .value { color: var(--ink); }

@media (max-width: 1024px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--maroon-950);
  color: rgba(255,255,255,0.78);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-text .top { color: var(--gold-400); }
.footer-brand .logo-text .bottom { color: rgba(255,255,255,0.7); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 13.5px; margin-top: 14px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; font-size: 13.5px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom .admin-link {
  color: rgba(255,255,255,0.4);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.footer-bottom .admin-link:hover { color: var(--gold-400); border-color: var(--gold-400); }
.footer-bottom .dot { color: rgba(255,255,255,0.25); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  z-index: 999;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ==========================================================================
   Gallery page
   ========================================================================== */
.gallery-hero {
  background: var(--maroon-900);
  color: var(--white);
  text-align: center;
  padding: 70px 0 56px;
}
.gallery-hero .eyebrow { color: var(--gold-400); justify-content: center; }
.gallery-hero .eyebrow::before { display: none; }
.gallery-hero h1 { color: var(--white); margin-top: 10px; font-size: clamp(30px, 4vw, 44px); }
.gallery-hero p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 14px auto 0; }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 0 6px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip.is-active { background: var(--maroon-900); border-color: var(--maroon-900); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 36px 0 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  cursor: zoom-in;
}
.gallery-item .thumb { aspect-ratio: 3/4; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .meta { padding: 12px 14px 16px; }
.gallery-item .meta .name { font-size: 13.5px; font-weight: 500; }
.gallery-item .meta .cat { font-size: 11.5px; color: var(--gold-600); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}

@media (max-width: 1080px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 8, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox-inner { max-width: 900px; max-height: 86vh; text-align: center; }
.lightbox-inner img { max-height: 76vh; margin: 0 auto; border-radius: 2px; }
.lightbox-caption { color: var(--cream-200); margin-top: 16px; font-size: 14px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none; color: var(--white); font-size: 18px;
}

/* ==========================================================================
   Admin
   ========================================================================== */
.admin-shell { min-height: 100vh; background: var(--cream-100); }
.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.admin-login-card {
  background: var(--white);
  padding: 48px 40px;
  width: 100%; max-width: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  text-align: center;
}
.admin-login-card h1 { font-size: 22px; margin-top: 14px; }
.admin-login-card p { margin-top: 8px; font-size: 13.5px; }
.field { text-align: left; margin-top: 20px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  background: var(--cream-100);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--maroon-800);
}
.form-msg { font-size: 13px; margin-top: 14px; min-height: 18px; }
.form-msg.error { color: #a3242f; }
.form-msg.success { color: #2f7d4f; }

.admin-topbar {
  background: var(--maroon-950);
  color: var(--white);
  padding: 16px 0;
}
.admin-topbar .container { display: flex; align-items: center; justify-content: space-between; }
.admin-topbar .brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 18px; color: var(--gold-400); }
.admin-topbar .who { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 16px; }

.admin-body { padding: 40px 0 80px; }
.admin-tabs { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.admin-tab {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
}
.admin-tab.is-active { background: var(--maroon-900); border-color: var(--maroon-900); color: var(--white); }

.admin-panel { display: none; }
.admin-panel.is-active { display: block; }

.panel-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 30px;
  margin-bottom: 24px;
}
.panel-card h2 { font-size: 19px; margin-bottom: 6px; }
.panel-card .hint { font-size: 13px; margin-bottom: 20px; }

.upload-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; }
.upload-form .field-full { grid-column: 1 / -1; }
.upload-form .field-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; margin-top: 4px; }

.file-drop {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--cream-100);
  cursor: pointer;
}
.file-drop:hover { border-color: var(--gold-500); }
.file-drop input { display: none; }
.file-preview { margin-top: 12px; max-height: 140px; border-radius: 2px; overflow: hidden; display: none; }
.file-preview img { width: 100%; }

.data-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.data-table th, .data-table td {
  text-align: left; padding: 12px 10px; font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.data-table th { color: var(--ink-soft); font-weight: 600; text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.04em; }
.data-table img { width: 52px; height: 52px; object-fit: cover; border-radius: 2px; }
.row-actions button {
  border: none; background: none; color: #a3242f; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.row-actions button:hover { text-decoration: underline; }

.slide-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px; border: 1px solid var(--line); border-radius: 2px; margin-bottom: 12px;
  background: var(--cream-100);
}
.slide-row img { width: 90px; height: 60px; object-fit: cover; border-radius: 2px; }
.slide-row .info { flex: 1; }
.slide-row .info .t { font-weight: 600; font-size: 13.5px; }
.slide-row .info .s { font-size: 12px; color: var(--ink-soft); }
.slide-row .move-btns { display: flex; gap: 6px; }
.slide-row .move-btns button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
}

.logo-current { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.logo-current .box {
  width: 100px; height: 100px; border-radius: 2px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; background: var(--cream-100); overflow: hidden;
}
.logo-current .box img { max-width: 90%; max-height: 90%; }

.badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--cream-200); color: var(--maroon-800);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .upload-form { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive nav for main site
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn span.label { display: none; }
}
@media (max-width: 980px) {
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--maroon-900);
    padding: 20px 32px 28px;
    border-bottom: 1px solid var(--maroon-950);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar-left span:not(:first-child) { display: none; }
  .story-copy, .story-media { padding: 0; }
  .visit-details { padding-top: 10px; }
}