/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Core palette from the logo */
  --navy:        #1a2744;
  --navy-deep:   #0f1a30;
  --navy-mid:    #243461;
  --blue:        #5a85c3;
  --blue-light:  #8aabda;
  --blue-pale:   #c5d8f5;
  --peach:       #7aa8e0;
  --peach-light: #a8c8f0;
  --white:       #ffffff;

  /* Theme defaults — DARK */
  --bg:          #0f1a30;
  --bg2:         #1a2744;
  --surface:     #1e2e50;
  --surface2:    #243461;
  --border:      #2d3f6a;
  --border2:     #3a5080;
  --text:        #eef2fb;
  --text2:       #9fb3d4;
  --text3:       #5a6f96;
  --content-heading: var(--text);
  --nav-bg:      rgba(15,26,48,0.92);
  --card-shadow: 0 4px 20px rgba(0,0,0,0.35);
  --hero-bg:     linear-gradient(160deg, #0f1a30 0%, #1a2744 60%, #1e3060 100%);
  --hero-fade:   #0f1a30;
}

[data-theme="light"] {
  --bg:          #f0f4fc;
  --bg2:         #e4ecf8;
  --surface:     #ffffff;
  --surface2:    #f0f4fc;
  --border:      #c8d8ef;
  --border2:     #a8c0e0;
  --text:        #0f1a30;
  --text2:       #3a5070;
  --text3:       #7090b0;
  --content-heading: var(--text);
  --nav-bg:      rgba(240,244,252,0.95);
  --card-shadow: 0 2px 12px rgba(26,39,68,0.08);
  --hero-bg:     linear-gradient(160deg, #1a2744 0%, #243461 50%, #2d4070 100%);
  --hero-fade:   #1a2744;
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background 0.25s, color 0.25s;
}

/* ─── NAV ────────────────────────────────────────────────────────── */
nav {
  gap: 1rem;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 2rem;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, border-color 0.25s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Cinzel', serif; font-size: 16px;
  color: var(--white); font-weight: 700; letter-spacing: 0.04em;
  line-height: 1.1;
}
[data-theme="light"] .nav-logo-text { color: var(--navy); }
.nav-logo-sub { font-size: 9px; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-link {
  color: var(--text2); text-decoration: none; font-size: 14px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  transition: color 0.15s; position: relative;
}
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--blue-light); border-radius: 2px; transform: scaleX(0); transition: transform 0.2s; }
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--text); font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 99px;
  background: var(--blue); color: white;
  text-decoration: none; font-size: 13px; font-weight: 600;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(90,133,195,0.35);
}
.nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); }
.nav-theme-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border2); background: var(--surface);
  color: var(--text2); cursor: pointer; font-size: 15px;
  transition: all 0.15s; flex-shrink: 0;
}
.nav-theme-btn:hover { border-color: var(--blue); color: var(--blue); }
/* Hide theme btn inside nav-links — always use the one in the right slot */
.nav-links .nav-theme-btn { display: none; }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--text2); cursor: pointer; padding: 4px; }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 2rem 5rem;
  background: var(--hero-bg);
  overflow: hidden;
}
/* Subtle glowing orbs */
.hero::before {
  content: '';
  position: absolute; top: 10%; right: 10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,133,195,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 5%; left: 5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,133,195,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Wave divider at bottom */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; overflow: hidden;
}
.hero-wave svg { display: block; width: 100%; height: 100%; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 99px;
  border: 1px solid rgba(90,133,195,0.4);
  background: rgba(90,133,195,0.12);
  font-size: 11px; font-weight: 600; color: var(--blue-pale);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.12;
  color: white; margin-bottom: 1rem;
}
.hero-title .accent {
  display: block;
  background: linear-gradient(135deg, #a8c8f0 0%, #7aaee8 50%, #d8eaff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.72); max-width: 620px; line-height: 1.9;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 99px;
  background: var(--blue); color: white;
  text-decoration: none; font-size: 14px; font-weight: 600;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(90,133,195,0.4);
  border: 2px solid var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(90,133,195,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 99px;
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none; font-size: 14px; font-weight: 600;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-note { margin-top: 1.5rem; font-size: 12px; color: rgba(255,255,255,0.45); font-family: 'Inter', sans-serif; }
.hero-note a { color: var(--blue-pale); text-decoration: none; }

/* ─── SECTIONS ───────────────────────────────────────────────────── */
.section { position: relative; z-index: 1; padding: 5rem 2rem; max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); font-family: 'Inter', sans-serif;
  margin-bottom: 0.6rem; display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; flex: none; width: 24px; height: 1px; background: var(--blue); opacity: 0.4; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.4rem,3vw,2rem); color: var(--text); margin-bottom: 0.6rem; font-weight: 700; }
.section-sub { font-size: 1.05rem; color: var(--text2); max-width: 580px; line-height: 1.85; margin-bottom: 2.8rem; }

/* ─── BAND ───────────────────────────────────────────────────────── */
.band { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; transition: background 0.25s; }
.band-inner { max-width: 1140px; margin: 0 auto; padding: 5rem 2rem; }

/* ─── CARDS BASE ─────────────────────────────────────────────────── */
.card-base {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; transition: all 0.25s;
  box-shadow: var(--card-shadow);
}
.card-base:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(90,133,195,0.2); }

/* ─── CATEGORY CARDS ─────────────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.category-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem;
  text-decoration: none; color: inherit;
  transition: all 0.25s; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--card-shadow); position: relative; overflow: hidden;
  text-align: center; align-items: center;
}
.category-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.category-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(90,133,195,0.25); }
.category-card:hover::after { transform: scaleX(1); }
.category-icon { font-size: 36px; display: block; margin-bottom: 2px; }
.category-pill { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); font-family: 'Inter', sans-serif; }
.category-title { font-family: 'Cinzel', serif; font-size: 1.15rem; color: var(--text); font-weight: 700; line-height: 1.3; text-align: center; }
.category-desc { font-size: 13.5px; color: var(--text2); line-height: 1.7; flex: 1; text-align: center; }
.category-link { font-size: 13px; font-weight: 600; color: var(--blue); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; justify-content: center; }

/* ─── PRODUCT CARDS ──────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.25s; box-shadow: var(--card-shadow); display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(90,133,195,0.25); }
.product-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--surface2); display: flex; align-items: center; justify-content: center; position: relative; }
.new-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: linear-gradient(135deg, #5a85c3 0%, #7aaee8 100%);
  color: white; font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(90,133,195,0.45);
  pointer-events: none; user-select: none;
  display: flex; align-items: center; gap: 4px;
}
.new-badge::before { content: '✦'; font-size: 8px; opacity: 0.85; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; will-change: transform; transform: translateZ(0); image-rendering: auto; }
.product-card:hover .product-img-wrap img { transform: translateZ(0) scale(1.03); }
.product-img-placeholder { font-size: 48px; color: var(--text3); }
.product-body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; gap: 5px; text-align: center; }
.product-cat-pill { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--peach); font-family: 'Inter', sans-serif; text-align: center; }
.product-title {
  font-family: 'Cinzel', serif;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
  min-height: 4.2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.product-desc { font-size: 12.5px; color: var(--text2); line-height: 1.65; flex: 1; }
.product-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.product-price { font-size: 16px; font-weight: 700; color: var(--text); font-family: 'Inter', sans-serif; text-align: center; }
.btn-etsy { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 7px 14px; border-radius: 99px; background: var(--blue); color: white; text-decoration: none; font-size: 12px; font-weight: 600; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.btn-etsy:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ─── BLOG CARDS ─────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 20px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: all 0.25s; box-shadow: var(--card-shadow); display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(90,133,195,0.2); }
.blog-thumb { width: 100%; height: 200px; overflow: hidden; background: var(--surface2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: translateZ(0) scale(1.03); }
.blog-thumb-placeholder { font-size: 38px; color: var(--text3); }
.blog-body { padding: 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.blog-date { font-size: 11px; color: var(--text3); font-family: 'Inter', sans-serif; }
.blog-title { font-family: 'Cinzel', serif; font-size: 14.5px; color: var(--content-heading); font-weight: 600; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text2); line-height: 1.65; flex: 1; }
.blog-read { font-size: 12px; font-weight: 600; color: var(--blue); font-family: 'Inter', sans-serif; margin-top: 0.4rem; }

/* EXPECTATIONS */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.expect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.expect-title {
  font-family: 'Cinzel', serif;
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.55rem;
  white-space: nowrap;
}
.expect-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}

/* ─── STUDIO PROMO ───────────────────────────────────────────────── */
.studio-promo {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  box-shadow: var(--card-shadow);
}
.studio-promo-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.studio-chip {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px;
  font-size: 12px; color: var(--text2); line-height: 1.55;
  font-family: 'Inter', sans-serif; transition: border-color 0.15s;
}
.studio-chip:hover { border-color: var(--blue); }
.studio-chip strong { color: var(--text); display: block; font-size: 12px; margin-bottom: 2px; }
.btn-studio {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 99px;
  background: var(--blue); color: white;
  text-decoration: none; font-size: 13px; font-weight: 700;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
  align-self: flex-start; margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(90,133,195,0.35);
}
.btn-studio:hover { background: var(--blue-light); transform: translateY(-2px); }

/* ─── SOCIALS ────────────────────────────────────────────────────── */
.socials-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.social-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 99px;
  border: 1px solid var(--border2); background: var(--surface);
  color: var(--text2); text-decoration: none;
  font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif;
  transition: all 0.15s; box-shadow: var(--card-shadow);
}
.social-chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ─── FILTER TABS ────────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-tab { padding: 8px 18px; border-radius: 99px; border: 1px solid var(--border2); background: var(--surface); color: var(--text2); font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.15s; }
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 2px 10px rgba(90,133,195,0.35); }

/* ─── INFO BOX ───────────────────────────────────────────────────── */
.info-box { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--blue); border-radius: 12px; padding: 1rem 1.3rem; margin-bottom: 1.8rem; font-size: 13.5px; color: var(--text2); line-height: 1.75; font-family: 'Inter', sans-serif; }
.info-box a { color: var(--blue); }

/* ─── PAGE HEADER ────────────────────────────────────────────────── */
.page-header { position: relative; z-index: 1; padding: 6rem 2rem 2.5rem; max-width: 1140px; margin: 0 auto; }
.shop-page-header { min-height: 320px; }
.shop-cat-desc { min-height: 3.6rem; margin-bottom: 1rem; }
.shop-cat-desc.is-empty { display: none; min-height: 0; margin: 0; }
.shop-page-header .info-box { min-height: 5.6rem; }
.page-header-404 { min-height: calc(100vh - 150px); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.blog-header { position: relative; z-index: 1; padding: 6rem 2rem 2.5rem; max-width: 800px; margin: 0 auto; }

/* ─── POST BODY ──────────────────────────────────────────────────── */
.post-body { max-width: 840px; margin: 0 auto; padding: 0 2rem 4rem; position: relative; z-index: 1; font-size: 1.03rem; line-height: 1.9; color: var(--text2); }
.post-body h1,.post-body h2,.post-body h3 { font-family: 'Cinzel', serif; color: var(--content-heading); margin: 2.5rem 0 0.8rem; line-height: 1.3; }
.post-body h1 { font-size: 1.95rem; }
.post-body h2 { font-size: 1.48rem; }
.post-body h3 { font-size: 1.18rem; }
.post-body p { margin-bottom: 0.9rem; }
.post-body a { color: var(--blue); }
.post-body strong { color: inherit; font-weight: 700; }
.post-body em { color: inherit; opacity: 0.82; }
.post-body figure { margin: 1.5rem 0; }
.post-body img { max-width: 100%; border-radius: 12px; margin: 1.5rem 0; box-shadow: var(--card-shadow); display: block; cursor: zoom-in; }
.post-body figure img { margin: 0; }
.post-body figcaption { margin-top: 0.45rem; font-size: 0.92rem; line-height: 1.55; color: var(--text3); font-style: italic; }
.post-body ul,.post-body ol { padding-left: 1.6rem; margin-bottom: 1.3rem; }
.post-body li { margin-bottom: 0.2rem; }
.post-body blockquote { border-left: 3px solid var(--blue); padding-left: 1.2rem; color: var(--text3); font-style: italic; margin: 1.5rem 0; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.about-intro {
  max-width: 860px;
  margin: 0 auto 2.2rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.9;
  font-family: 'Inter', sans-serif;
}
.about-home-panel,
.about-story-panel,
.about-cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}
.about-home-panel { padding: 2.4rem; }
.about-cta-panel {
  padding: 2.2rem 2rem;
  text-align: center;
}
.about-home-pairs {
  display: grid;
  gap: 1rem;
}
.about-home-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.about-home-row-cards .team-card.compact {
  height: 100%;
}
.about-home-copy p,
.about-story-copy p {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.85;
  font-family: 'Inter', sans-serif;
}
.about-home-copy p + p,
.about-story-copy p + p { margin-top: 0.9rem; }
.about-home-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 1.15rem;
  justify-content: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.team-card-header { display: flex; align-items: center; gap: 12px; }
.team-avatar {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  object-fit: cover;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}
.team-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
}
.team-role {
  font-size: 0.95rem;
  color: var(--blue-light);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.team-card p {
  font-size: 0.98rem;
  color: var(--text2);
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}
.team-card.compact {
  padding: 1rem 1.05rem;
  gap: 0.7rem;
}
.team-card.compact .team-avatar {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}
.team-card.compact .team-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.team-card.compact .team-role {
  font-size: 0.82rem;
  line-height: 1.25;
}
.team-card.compact p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
}
.about-story-panel { padding: 2rem; }
.about-story-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.about-note-band {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem 1.35rem;
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}
.about-note-band strong { color: var(--text); }
footer { position: relative; z-index: 1; background: var(--navy-deep); border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; }
[data-theme="light"] footer { background: var(--navy); }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 3rem; margin-bottom: 2rem; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 0.8rem; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand-name { font-family: 'Cinzel', serif; font-size: 16px; color: white; font-weight: 700; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 260px; font-family: 'Inter', sans-serif; }
.footer-links-grid { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-link-group { display: flex; flex-direction: column; gap: 8px; }
.footer-link-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); font-family: 'Inter', sans-serif; margin-bottom: 6px; }
.footer-link { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; font-family: 'Inter', sans-serif; transition: color 0.15s; }
.footer-link:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: center; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); font-family: 'Inter', sans-serif; }

/* ─── SECONDARY BUTTON ───────────────────────────────────────────── */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 99px;
  border: 1.5px solid var(--border2); color: var(--text2);
  background: transparent; text-decoration: none;
  font-size: 13px; font-weight: 600;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ─── UTILS ──────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.empty-state { text-align: center; padding: 3.5rem 2rem; color: var(--text3); font-size: 14px; font-family: 'Inter', sans-serif; }
.two-col { display: flex; gap: 1rem; }
.two-col > * { flex: 1; }

/* ─── ADMIN ──────────────────────────────────────────────────────── */
body.admin-body { background: var(--bg2); font-family: 'Inter', sans-serif; }
.admin-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; background: var(--navy-deep); border-bottom: 1px solid var(--border); }
.admin-nav-brand { display: flex; align-items: center; gap: 10px; }
.admin-nav-brand img { width: 32px; height: 32px; object-fit: contain; }
.admin-nav-brand span { font-family: 'Cinzel', serif; font-size: 14px; color: white; font-weight: 600; }
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; padding-top: 55px; }
.admin-sidebar { background: var(--surface); border-right: 1px solid var(--border); padding: 1.5rem 0.8rem; position: sticky; top: 55px; height: calc(100vh - 55px); overflow-y: auto; }
.sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); padding: 0 10px; margin: 1rem 0 0.4rem; display: block; }
.admin-nav-item { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 8px; color: var(--text2); font-size: 13px; font-weight: 500; transition: all 0.15s; margin-bottom: 2px; cursor: pointer; border: none; background: none; width: 100%; text-align: left; font-family: 'Inter', sans-serif; }
.admin-nav-item span:first-child { width: 20px; text-align: center; flex-shrink: 0; font-style: normal; }
.admin-nav-item:hover { background: var(--bg2); color: var(--text); }
.admin-nav-item.active { background: rgba(90,133,195,0.15); color: var(--blue); font-weight: 600; }
.admin-main { padding: 2rem; background: var(--bg2); overflow: visible; }
.admin-panel { display: none; max-width: 940px; }
.admin-panel.active { display: block; }
.admin-pg-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; font-family: 'Inter', sans-serif; }
.acard { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.2rem; }
.acard-label { font-size: 11px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; display: block; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 5px; }
.form-hint { font-size: 11px; color: var(--text3); margin-top: 3px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 9px 12px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--bg2); color: var(--text); font-size: 13px; font-family: 'Inter', sans-serif; transition: border-color 0.15s, box-shadow 0.15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(90,133,195,0.15); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.btn-save { padding: 9px 22px; border-radius: 8px; background: var(--blue); color: white; border: none; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.btn-save:hover { background: var(--blue-light); }
.btn-cancel { padding: 9px 18px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--surface); color: var(--text2); font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.btn-cancel:hover { border-color: var(--border2); color: var(--text); }
.btn-new { padding: 8px 16px; border-radius: 8px; background: var(--blue); color: white; border: none; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.btn-new:hover { background: var(--blue-light); }
.btn-edit { padding: 5px 12px; border-radius: 6px; background: rgba(90,133,195,0.12); border: 1px solid rgba(90,133,195,0.3); color: var(--blue); font-size: 12px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.btn-edit:hover { background: rgba(90,133,195,0.2); }
.btn-del { padding: 5px 12px; border-radius: 6px; background: rgba(200,60,60,0.1); border: 1px solid rgba(200,60,60,0.25); color: #e06060; font-size: 12px; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.btn-del:hover { background: rgba(200,60,60,0.18); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 12px; margin-bottom: 1.5rem; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.1rem; }
.stat-val { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 2px; font-family: 'Inter', sans-serif; }
.stat-label { font-size: 11px; color: var(--text3); font-weight: 500; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { text-align: left; padding: 9px 12px; color: var(--text3); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid var(--border); background: var(--bg2); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text2); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg2); }
.status-published { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: rgba(50,180,100,0.15); color: #50c080; border: 1px solid rgba(50,180,100,0.25); }
.status-draft { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: rgba(200,160,50,0.15); color: #c8a030; border: 1px solid rgba(200,160,50,0.25); }
.notice-ok { padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 1rem; background: rgba(50,180,100,0.12); border: 1px solid rgba(50,180,100,0.25); color: #50c080; }
.notice-err { padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 1rem; background: rgba(200,60,60,0.12); border: 1px solid rgba(200,60,60,0.25); color: #e06060; }
.upload-area { border: 2px dashed var(--border2); border-radius: 10px; padding: 1.2rem; text-align: center; cursor: pointer; transition: all 0.15s; background: var(--bg2); }
.upload-area:hover, .upload-area.drag { border-color: var(--blue); background: rgba(90,133,195,0.06); }
.upload-area input[type=file] { display: none; }
.upload-preview { max-width: 140px; max-height: 140px; border-radius: 8px; margin-top: 0.8rem; object-fit: cover; }
.md-tabs { display: flex; border-bottom: 1px solid var(--border); }
.md-tab { padding: 7px 16px; font-size: 12px; font-weight: 500; color: var(--text3); border: none; background: none; cursor: pointer; font-family: 'Inter', sans-serif; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.15s; }
.md-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.md-preview-box { background: var(--bg2); border: 1.5px solid var(--border); border-top: none; border-radius: 0 0 8px 8px; padding: 1rem; min-height: 140px; font-size: 13.5px; line-height: 1.8; color: var(--text2); }
.md-preview-box h1,.md-preview-box h2,.md-preview-box h3 { font-family: 'Cinzel', serif; color: var(--text); margin: 1rem 0 0.4rem; }
.md-preview-box p { margin-bottom: 0.8rem; }
.md-preview-box img { max-width: 100%; border-radius: 6px; margin: 0.5rem 0; }
.prow { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.prow:last-child { border-bottom: none; }
.prow-thumb { width: 80px; height: 80px; border-radius: 10px; flex-shrink: 0; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--text3); overflow: hidden; }
.prow-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prow-info { flex: 1; min-width: 0; }
.prow-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.prow-meta { font-size: 11px; color: var(--text3); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.prow-theme { width: 240px; flex: 0 0 240px; }
.prow-actions { display: flex; gap: 6px; flex-shrink: 0; margin-left: auto; }
#login-screen { position: fixed; inset: 0; background: var(--bg); display: flex; align-items: center; justify-content: center; z-index: 999; }
.login-box { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 360px; text-align: center; box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.blog-editor-toolbar {
  position: sticky;
  top: 74px;
  z-index: 12;
  box-shadow: 0 10px 22px rgba(7, 13, 28, 0.18);
}
.blog-body-editor img[data-editor-image="1"] {
  max-width: 100%;
  border-radius: 10px;
  margin: 0.65rem 0;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s, outline-color 0.15s;
}
.blog-body-editor img[data-editor-image="1"][data-selected="1"] {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(90,133,195,0.12);
}
.blog-editor-image-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: sticky;
  bottom: 14px;
  z-index: 11;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 10px 24px rgba(7, 13, 28, 0.22);
  backdrop-filter: blur(8px);
}
.blog-editor-image-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.blog-editor-image-input {
  min-width: 210px;
  flex: 1 1 230px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.blog-editor-image-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(90,133,195,0.15);
}
.blog-editor-image-btn {
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text2);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}
.blog-editor-image-btn:hover {
  border-color: var(--blue);
  color: var(--text);
}
.blog-editor-image-btn.danger:hover {
  border-color: rgba(200,60,60,0.35);
  color: #f08e8e;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0.7rem 1.2rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 58px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 0.8rem; z-index: 99; }
  .nav-mobile-toggle { display: flex; }
  .studio-promo { grid-template-columns: 1fr; }
  .about-home-grid,
  .about-page-grid,
  .team-grid,
  .about-home-row { grid-template-columns: 1fr; }
  .about-home-panel,
  .about-story-panel { padding: 1.5rem; }
  .about-home-actions { justify-content: center; }
  .about-intro { font-size: 0.98rem; }
  .footer-top { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; top: 0; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .blog-editor-toolbar { top: 10px; }
  .blog-editor-image-controls { bottom: 10px; }
  .two-col { flex-direction: column; }
  .prow { align-items: flex-start; flex-wrap: wrap; }
  .prow-theme { width: 100%; flex: 1 0 100%; }
  .prow-actions { margin-left: 94px; }
}

/* ── MAILING LIST ────────────────────────────────────────────────── */
.mail-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}
.mail-form {
  display: flex; gap: 10px; max-width: 480px; margin: 1.5rem auto 0; flex-wrap: wrap; justify-content: center;
}
.mail-input {
  flex: 1; min-width: 180px; padding: 11px 16px; border-radius: 99px;
  border: 1.5px solid var(--border); background: var(--bg2);
  color: var(--text); font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.15s;
}
.mail-input:focus { border-color: var(--blue); }
.mail-btn {
  padding: 11px 24px; border-radius: 99px;
  background: var(--blue); color: white; border: none;
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.mail-btn:hover { background: var(--blue-light); transform: translateY(-1px); }
.mail-success {
  background: rgba(50,180,100,0.12); border: 1px solid rgba(50,180,100,0.3);
  color: #50c080; border-radius: 10px; padding: 10px 20px;
  font-size: 13px; font-family: 'Inter', sans-serif; margin-top: 1rem;
  display: none;
}
/* Footer compact signup */
.footer-mail-form { display: flex; gap: 8px; margin-top: 0.8rem; flex-wrap: wrap; }
.footer-mail-input {
  flex: 1; min-width: 140px; padding: 8px 14px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07);
  color: white; font-size: 13px; font-family: 'Inter', sans-serif; outline: none;
}
.footer-mail-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-mail-input:focus { border-color: var(--blue); }
.footer-mail-btn {
  padding: 8px 16px; border-radius: 99px; background: var(--blue);
  color: white; border: none; font-size: 12px; font-weight: 600;
  font-family: 'Inter', sans-serif; cursor: pointer; white-space: nowrap;
}
.footer-mail-btn:hover { background: var(--blue-light); }

/* ── DATE INPUT STYLING ──────────────────────────────────────────── */
input[type="date"].form-input {
  color-scheme: dark;
}
[data-theme="light"] input[type="date"].form-input {
  color-scheme: light;
}
input[type="date"].form-input::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a85c3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  cursor: pointer; opacity: 0.8; transition: opacity 0.15s;
  width: 18px; height: 18px;
}
input[type="date"].form-input::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* ── TAG PILLS (shop filter) ─────────────────────────────────────── */
.tag-pill {
  padding: 5px 14px; border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent; color: var(--text2);
  font-size: 12px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.15s;
  white-space: nowrap;
}
.tag-pill:hover { border-color: var(--blue); color: var(--text); }
.tag-pill.active { border-color: var(--blue); background: rgba(90,133,195,0.12); color: var(--blue-light); }

/* ── SHOP SIDEBAR ────────────────────────────────────────────────── */
.sidebar-tag-btn {
  display: flex; align-items: center; gap: 8px;
  width: 100%; text-align: left;
  padding: 7px 12px; border-radius: 8px;
  border: none; background: transparent;
  color: var(--text2); font-size: 13px; font-weight: 500;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: all 0.15s;
}
.sidebar-tag-btn:hover { background: rgba(90,133,195,0.08); color: var(--text); }
.sidebar-tag-btn.active { background: rgba(90,133,195,0.12); color: var(--blue-light); font-weight: 600; }

@media (max-width: 700px) {
  #shop-sidebar { position: static; }
  [style*="grid-template-columns:220px 1fr"] { grid-template-columns: 1fr !important; }
}


