*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* =========================================
     THEME SWITCHER
     Active = THEME B (Dark Grey Cartoon),
     unified across every page to match the
     Portfolio background. To go back to the
     Soft Pink Anime look, swap in the commented
     THEME A values below.
     ========================================= */

  /* -- Layout -- */
  --topbar-h: 38px;
  --nav-height: 68px;
  --max-width: 1100px;

  /* -- THEME B: Dark Grey Cartoon (ACTIVE) -- */
  --bg-page: #27232E;        /* page background */
  --bg-page-deep: #27232E;   /* hero gradient start */
  --bg-dark: #27232E;        /* kept for compatibility */
  --bg-darker: #2b2830;      /* top bar + footer */

  /* THEME A alternative values (Soft Pink Anime, uncomment to use):
     --bg-page: #fce4ec;
     --bg-page-deep: #f8d7dc;
     --bg-dark: #45424b;
     --bg-darker: #2b2830;
     plus flip the context palette below to:
     --card: #fff8fb;  --border: #f1cfdd;  --text-heading: #2c2c2c;
     --text-body: #5d5561;  --text-muted: #9b8d97;  --link: #b34a67;
     --card-shadow: 0 10px 24px rgba(203, 109, 147, 0.14);
  */

  /* Context palette */
  --card: #56525e;
  --border: #6b6674;
  --text-heading: #faf6fa;
  --text-body: #ece7f2;
  --text-muted: #beb3c8;
  --link: var(--accent);
  --card-shadow: none;

  /* Brand accent (gold) */
  --accent: #f4c34f;
  --accent-hover: #ffd76e;
  --accent-light: rgba(244, 195, 79, 0.18);

  --font: 'Fredoka', sans-serif;
  --font-display: 'Fredoka', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 500;
  background-color: var(--bg-page);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>"),
    linear-gradient(180deg, var(--bg-page-deep) 0%, var(--bg-page) 100%);
  background-repeat: repeat, no-repeat;
  background-size: 140px 140px, 100% 100%;
  background-attachment: fixed, fixed;
  color: var(--text-body);
  line-height: 1.7;
  transition: background-color 0.8s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* -- Day / Night theme overrides -- */
body.theme-day  { --bg-page: #27232E; --bg-page-deep: #27232E; --bg-dark: #27232E; }
body.theme-night{ --bg-page: #27232E; --bg-page-deep: #27232E; --bg-dark: #27232E; }

/* -- Hero logo wrapper -- */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

::selection {
  background: rgba(244, 195, 79, 0.45);
  color: #2c2c2c;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   TOP BAR + NAVIGATION
   ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar {
  height: var(--topbar-h);
  background: var(--bg-darker);
  color: #d9d2de;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-hearts {
  color: var(--accent);
  letter-spacing: 4px;
  margin-right: 10px;
}

.top-bar-links a {
  color: var(--accent);
  text-transform: uppercase;
  margin-left: 18px;
  font-size: 0.7rem;
}

.top-bar-links a:hover {
  color: var(--accent-hover);
}

.navbar {
  position: relative;
  height: var(--nav-height);
  background: linear-gradient(180deg, rgba(74, 74, 81, 0.95) 0%, rgba(63, 63, 70, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  padding: 0 40px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-heading);
  letter-spacing: 0.03em;
}

.nav-logo:hover {
  color: var(--link);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  display: block;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid transparent;
  color: #c9c2cf;
  font-size: 0.78rem;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-heading);
}

.nav-links a.active {
  background: #886790;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(136, 103, 144, 0.5);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* =========================================
   HERO (soft pink + wavy edge)
   ========================================= */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--topbar-h) + var(--nav-height));
}

/* Purple wave crest (used below the homepage hero + to close out pages) */
.wave-band {
  position: relative;
  height: 75px;
  margin-top: -75px;
  pointer-events: none;
  z-index: 2;
}

/* variant for subpages: sits in normal flow between content and footer */
.wave-band.standalone {
  margin-top: 0;
}

/* footer: wave crest flowing into a solid purple body */
.site-footer {
  display: flex;
  flex-direction: column;
}

.footer-body {
  background: #886790;
  min-height: calc(25mm - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* top edge: purple wave crest, fill melts downward */
.wave-band::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 75px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: var(--wave-img, url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 75" preserveAspectRatio="none"><path d="M0,40 C180,60 300,10 480,24 C660,38 780,62 960,48 C1140,34 1290,14 1440,32 L1440,75 L0,75 Z" fill="%23886790"/></svg>'));
}

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

.hero-image-wrap {
  margin-bottom: 20px;
}

.hero-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(244, 195, 79, 0.25);
}

.hero-logo {
  max-width: 920px;
  width: 95%;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Hero portfolio carousel ---- */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  overflow: hidden;
  padding: 20px 0 20px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.carousel-track img,
.carousel-track video {
  height: 300px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.track-left {
  animation: scroll-left 80s linear infinite;
}

.track-right {
  animation: scroll-right 85s linear infinite;
}

.hero-carousel:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* radial vignette so logo + buttons stay readable over busy art */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(29, 24, 36, 0.6) 0%, rgba(29, 24, 36, 0.2) 55%, rgba(29, 24, 36, 0.05) 80%, transparent 100%);
  pointer-events: none;
}

/* =========================================
   BUTTONS (pill shaped)
   ========================================= */

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font);
}

.btn-primary {
  background: #886790;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #9b7aa5;
  box-shadow: 0 8px 20px rgba(136, 103, 144, 0.35);
  color: #ffffff;
}

.btn-outline {
  background: #886790;
  border: 2px solid #886790;
  color: #fff;
}

.btn-outline:hover {
  background: #9b7aa5;
  transform: translateY(-3px);
  border-color: #9b7aa5;
  color: #fff;
}

.btn-small {
  padding: 9px 22px;
  font-size: 0.75rem;
  border-radius: 50px;
  background: #886790;
  color: #ffffff;
}

.btn-small:hover {
  transform: translateY(-2px);
  background: #9b7aa5;
  box-shadow: 0 6px 16px rgba(136, 103, 144, 0.45);
  color: #ffffff;
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 96px 0;
}

.section-full {
  min-height: calc(100vh - var(--topbar-h) - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-heading);
}

.section-title::after {
  content: '\2661';
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 8px auto 0;
  line-height: 1;
}

/* =========================================
   ABOUT
   ========================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image {
  width: 100%;
  border-radius: 20px;
  border: 3px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .profile-image {
    max-width: 420px;
    margin: 0 auto;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.8;
}

.about-text .about-tools {
  margin-top: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .about-bio {
  margin-top: 0;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--text-heading);
}

.about-tools {
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.about-tools h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--text-heading);
}

.tools-list {
  list-style: none;
}

.tools-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.8;
}

.tools-list li:last-child {
  border-bottom: none;
}

.tool-icon {
  color: var(--accent);
}

/* =========================================
   PORTFOLIO
   ========================================= */

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-body);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-btn:hover {
  border-color: #886790;
  color: #b995c1;
}

.filter-btn.active {
  background: #886790;
  color: #ffffff;
  border-color: #886790;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--card);
  aspect-ratio: 16 / 10;
}

.portfolio-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.portfolio-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #4a3608;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  pointer-events: none;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-link {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.portfolio-link video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

/* No hover zoom: it would re-crop images shown with object-fit: contain */

/* =========================================
   LIGHTBOX
   ========================================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 18, 23, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  width: 80vw;
  height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-video {
  width: auto;
  max-width: min(85vw, 1300px);
  max-height: 82vh;
  border-radius: 12px;
  background: #000;
}

.lightbox-frame {
  display: none;
  width: min(85vw, 1100px);
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 82vh;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2001;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.2s;
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* =========================================
   TOS
   ========================================= */

.tos-notice {
  text-align: center;
  color: var(--text-body);
  margin-bottom: 28px;
}

.tos-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.tos-highlight {
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
  border-radius: 50px;
  padding: 12px 22px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.tos-star {
  color: var(--accent);
  flex-shrink: 0;
}

.tos-details {
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.tos-summary {
  padding: 18px 24px;
  cursor: pointer;
  color: var(--link);
  user-select: none;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tos-summary:hover {
  background: var(--accent-light);
}

.tos-full {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.tos-full h3 {
  font-family: var(--font-display);
  color: var(--link);
  margin: 24px 0 12px;
  font-size: 1.15rem;
}

.tos-full h3:first-child {
  margin-top: 0;
}

.tos-full ul, .tos-full ol {
  padding-left: 18px;
  color: var(--text-body);
}

.tos-full li {
  margin-bottom: 6px;
}

.will-wont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.will h4 {
  color: var(--link);
  margin-bottom: 8px;
}

.wont h4 {
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* =========================================
   PRICES
   ========================================= */

.prices-notice, .prices-cta {
  text-align: center;
  color: var(--text-body);
  margin-bottom: 10px;
}

.prices-cta {
  margin-bottom: 28px;
}

.prices-closed {
  text-align: center;
  margin-top: 32px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.prices-closed p {
  color: var(--link);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.price-card-header {
  padding: 22px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.price-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.price-value {
  font-size: 1.8rem;
  color: var(--link);
}

.price-value span {
  color: var(--text-muted);
}

.price-value-sub {
  font-size: 1.15rem;
  color: var(--link);
  margin-top: 4px;
}

.price-value-sub span {
  color: var(--text-muted);
}

.price-features {
  padding: 20px;
  list-style: none;
}

.price-features li {
  padding: 6px 0;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '\2661';
  color: var(--accent);
  flex-shrink: 0;
}

.price-turnaround {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-style: italic;
}

/* =========================================
   SHOP
   ========================================= */

.shop-section {
  margin-bottom: 40px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(244, 195, 79, 0.35);
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.shop-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 26px 20px;
}

.shop-item {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.shop-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-hover);
  box-shadow: 0 0 30px rgba(244, 195, 79, 0.3), 0 14px 34px rgba(0, 0, 0, 0.35);
}

/* uniform framed product shot with hover zoom */
.shop-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(244, 195, 79, 0.25);
  margin-bottom: 14px;
  background: rgba(244, 195, 79, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-item:hover .shop-thumb img {
  transform: scale(1.13);
}

.shop-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-heading);
  line-height: 1.4;
}

.shop-price {
  font-size: 1.35rem;
  color: var(--link);
  margin-bottom: 12px;
  margin-top: auto; /* keeps price + buy button aligned at the same height on every card */
}

/* premium gradient buy button */
.shop-item .btn-small {
  background: linear-gradient(180deg, #9b7aa5 0%, #886790 100%);
  box-shadow: 0 4px 12px rgba(136, 103, 144, 0.35);
}

.shop-item .btn-small:hover {
  background: linear-gradient(180deg, #a886b3 0%, #96749f 100%);
  box-shadow: 0 6px 18px rgba(136, 103, 144, 0.5);
}

/* =========================================
   CONTACT
   ========================================= */

/* one unified card: info, socials + commission form */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* info block sits inside the unified card, separated by a divider */
.contact-info {
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(244, 195, 79, 0.25);
}

.contact-info p {
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-links a {
  color: var(--accent);
}

.contact-links {
  list-style: none;
}

.contact-links li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.contact-links li:last-child {
  border-bottom: none;
}

.contact-links strong {
  color: var(--text-heading);
}

.social-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--text-heading);
}

.social-link-wide {
  white-space: nowrap;
  padding: 11px 18px;
  justify-self: start;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text-body);
  transition: all 0.25s;
  text-align: center;
}

.social-link:hover {
  background: #886790;
  border-color: #aeb5c4;
  color: #fff;
  box-shadow: 0 0 15px rgba(136, 103, 144, 0.4);
  transform: translateY(-3px);
}

/* =========================================
   HOMEPAGE EXPLORE CARDS
   ========================================= */

.link-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-card {
  display: block;
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
  border-radius: 20px;
  padding: 22px 14px;
  text-align: center;
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.link-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.link-card h3 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.link-card:hover h3 {
  color: var(--link);
}

.link-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* =========================================
   FOOTER + DECOR
   ========================================= */

.footer {
  padding: 32px 0;
  text-align: center;
  background: var(--bg-darker);
  color: #a89da9;
  font-size: 0.8rem;
}

.decorative-hearts {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 8px;
  opacity: 0.55;
  margin: 12px 0;
  user-select: none;
}

/* =========================================
   MULTI-PAGE LAYOUT
   ========================================= */

.page-content {
  padding-top: calc(var(--topbar-h) + var(--nav-height));
  min-height: 100vh;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(69, 66, 75, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 16px;
    gap: 2px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .will-wont {
    grid-template-columns: 1fr;
  }

  .prices-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .top-bar-tagline {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE & PERFORMANCE ADDITIONS
   ========================================= */

img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: var(--nav-height);
  }

  .hero-carousel {
    justify-content: center;
    padding: 10px 0;
  }

  .carousel-track img,
  .carousel-track video {
    height: 300px;
    border-radius: 10px;
  }

  .hero-image {
    width: 150px;
    height: 150px;
  }

  .hero-logo {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 3;
  }

  .hero-actions .btn {
    width: min(320px, 80vw);
  }

  .wave-band {
    height: 55px;
    margin-top: -55px;
  }

  .wave-band::before {
    height: 55px;
  }

  .footer-body {
    min-height: calc(25mm - 55px);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
    padding-bottom: 16px;
  }

  .hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 16px;
  }

  .hero-image {
    width: 100px;
    height: 100px;
  }

  .hero-logo {
    max-width: 280px;
    width: 60%;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
    padding: 10px 24px;
    font-size: 0.75rem;
  }

  .carousel-track img,
  .carousel-track video {
    height: 140px;
  }

  .hero-carousel {
    padding: 8px 0;
    gap: 8px;
  }

  .hero-image-wrap {
    margin-bottom: 0;
  }

  .hero-logo-wrap {
    margin-bottom: 0;
  }

  #about {
    padding-top: 24px;
  }

  .section {
    padding: 32px 0;
  }

  .about-grid {
    gap: 20px;
  }

  .wave-band {
    height: 40px;
    margin-top: -40px;
  }

  .wave-band::before {
    height: 40px;
  }

  .footer-body {
    min-height: auto;
    padding: 16px;
  }
}

/* =========================================
   SITE-WIDE POLISH (contrast, glass, depth)
   ========================================= */

/* Frosted-glass content boxes */
.portfolio-item,
.price-card,
.shop-item {
  background: rgba(32, 29, 38, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.shop-item > img {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

/* =========================================
   SHOP POLISH
   ========================================= */

.shop-h3-ico {
  margin-right: 10px;
}

/* every shelf gets the price card look */

.profile-image {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* Button hover pop */
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn-small:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Magical glow behind the hero portrait */
.hero-image-wrap {
  position: relative;
  isolation: isolate;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 103, 144, 0.5) 0%, rgba(136, 103, 144, 0) 70%);
  z-index: -1;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from { transform: scale(0.94); opacity: 0.7; }
  to { transform: scale(1.07); opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Floating sparkle particles */
.star-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px 1px rgba(201, 168, 209, 0.9);
  animation: twinkle var(--tw, 3.6s) ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes twinkle {
  from { opacity: 0.1; }
  to { opacity: 0.85; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(26px, -52px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .star-layer {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image-wrap::before {
    animation: none;
  }
}

/* =========================================
   PORTFOLIO POLISH
   ========================================= */

.portfolio-link {
  position: relative;
}

/* image zoom on hover (card clips the overflow) */
.portfolio-item:hover .portfolio-link img {
  transform: scale(1.09);
}

/* floating "View" pill on hover */
.portfolio-link::after {
  content: 'View';
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 8px);
  background: #886790;
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.portfolio-item:hover .portfolio-link::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* elegant heading tracking */
.section-title {
  letter-spacing: 0.04em;
}

/* category tab glow when active */
.filter-btn.active {
  box-shadow: 0 4px 14px rgba(136, 103, 144, 0.45);
}

/* =========================================
   PRICING POLISH
   ========================================= */

.price-card {
  display: flex;
  flex-direction: column;
  border-color: rgba(244, 195, 79, 0.35);
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-hover);
  box-shadow: 0 0 30px rgba(244, 195, 79, 0.3), 0 14px 34px rgba(0, 0, 0, 0.35);
}

.price-value {
  font-size: 2.3rem;
}

.price-features {
  flex: 1;
  padding: 18px 22px;
}

.price-features li {
}

.price-features li::before {
  content: none;
}

.feat-ico {
  margin-right: 2px;
  flex-shrink: 0;
}

.price-turnaround {
  display: inline-block;
  align-self: flex-start;
  margin: 0 22px 18px;
  padding: 6px 14px;
  background: rgba(244, 195, 79, 0.12);
  border: 1px solid rgba(244, 195, 79, 0.4);
  color: var(--accent);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
}

.price-cta {
  display: block;
  text-align: center;
  margin: auto 22px 22px;
}

.price-card-premium {
  border-color: rgba(244, 195, 79, 0.65);
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.14) 0%, rgba(32, 29, 38, 0.72) 45%);
  box-shadow: 0 0 26px rgba(244, 195, 79, 0.22), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.price-card-premium:hover {
  box-shadow: 0 0 36px rgba(244, 195, 79, 0.38), 0 14px 34px rgba(0, 0, 0, 0.35);
}

.premium-badge {
  display: inline-block;
  background: var(--accent);
  color: #4a3608;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* =========================================
   TOS POLISH
   ========================================= */

.tos-details {
  background: linear-gradient(165deg, rgba(244, 195, 79, 0.09) 0%, rgba(32, 29, 38, 0.72) 45%);
  border: 1px solid rgba(244, 195, 79, 0.35);
}

.tos-full {
  line-height: 1.8;
}

.tos-full ul,
.tos-full ol {
  line-height: 1.8;
}

.tos-full li {
  margin-bottom: 10px;
}

/* key terms stand out in white instead of gold */
.tos-full strong {
  color: var(--text-heading);
}

/* summary button pops on hover + chevron */
.tos-summary {
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tos-summary:hover {
  background: rgba(136, 103, 144, 0.22);
  color: var(--text-heading);
  box-shadow: 0 6px 18px rgba(136, 103, 144, 0.35);
  transform: translateY(-2px);
}

.tos-summary::after {
  content: '\25BE';
  float: right;
  transition: transform 0.3s ease;
}

.tos-details[open] .tos-summary::after {
  transform: rotate(180deg);
}

/* smooth fade-in when terms open */
.tos-details[open] .tos-full {
  animation: tosFade 0.45s ease;
}

@keyframes tosFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* will / won't comparison columns */
.will-wont {
  gap: 0;
}

.will,
.wont {
  padding: 16px 20px;
}

.will {
  background: rgba(244, 195, 79, 0.06);
  border: 1px solid rgba(244, 195, 79, 0.25);
  border-right: none;
  border-radius: 14px 0 0 14px;
}

.wont {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 0 14px 14px 0;
}

/* shared edge acts as the center divider line */
.will ul,
.wont ul {
  list-style: none;
  padding-left: 0;
}

.will li,
.wont li {
  display: flex;
  align-items: baseline;
}

.will li::before {
  content: '\2665';
  color: var(--accent);
  margin-right: 8px;
  flex-shrink: 0;
}

.wont li::before {
  content: '\00D7';
  color: #ef4444;
  margin-right: 8px;
  flex-shrink: 0;
}

.wont h4 {
  color: #f87171;
}

@media (max-width: 768px) {
  .will-wont {
    gap: 12px;
  }

  .will {
    border-right: 1px solid rgba(244, 195, 79, 0.25);
    border-radius: 14px;
  }

  .wont {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tos-details[open] .tos-full {
    animation: none;
  }
}

/* =========================================
   CONTACT POLISH
   ========================================= */

#contact .section-title {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6), 0 0 24px rgba(136, 103, 144, 0.3);
}

.social-link .soc-ico {
  margin-right: 8px;
}

/* official brand logo icons (SVG images) */
img.soc-ico,
svg.soc-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-links li {
  line-height: 1.7;
}
/* =========================================
   MOBILE OPTIMIZATION PASS
   ========================================= */

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  /* comfortable touch targets in the dropdown menu */
  .nav-links a {
    padding: 13px 16px;
    font-size: 0.85rem;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  #about {
    padding-top: 0;
  }

  .section-title {
    margin-bottom: 26px;
  }

  /* glass panels stay cozy, not cramped */
  .contact-card {
    padding: 16px;
    gap: 18px;
  }

  .contact-info {
    padding: 14px;
  }

  .shop-section {
    padding: 14px;
  }

  .price-card {
    padding: 20px;
  }

  /* lightbox fills small screens; arrows move to thumb reach */
  .lightbox-img {
    width: 94vw;
    height: 74vh;
  }

  .lightbox-video {
    width: auto;
    max-width: 94vw;
    max-height: 74vh;
  }

  .lightbox-frame {
    width: 94vw;
    max-height: 74vh;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 1.8rem;
    padding: 10px 14px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 70px);
  }

  .lightbox-next {
    right: calc(50% - 70px);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .carousel-track img,
  .carousel-track video {
    height: 300px;
    border-radius: 10px;
  }

  .carousel-track {
    gap: 10px;
  }

  .hero-carousel {
    gap: 10px;
  }
}
/* =========================================
   MAGICAL ATMOSPHERE PASS
   ========================================= */

/* headings emit a faint enchanted halo */
.section-title {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 0 26px rgba(136, 103, 144, 0.28);
}

/* buttons carry a resting purple glow */
.btn-primary,
.btn-outline,
.btn-small {
  box-shadow: 0 0 16px rgba(136, 103, 144, 0.22), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover,
.btn-outline:hover {
  box-shadow: 0 0 24px rgba(136, 103, 144, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3);
}
/* =========================================
   GLOW COMPLETION PASS
   ========================================= */

/* portfolio + home link cards glow on hover like the rest */
.portfolio-item:hover {
  box-shadow: 0 0 22px rgba(244, 195, 79, 0.3), 0 10px 28px rgba(0, 0, 0, 0.4);
}

.link-card:hover {
  box-shadow: 0 0 22px rgba(244, 195, 79, 0.3), 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* lightbox media emits light against the dark veil */
.lightbox-img,
.lightbox-video,
.lightbox-frame {
  box-shadow: 0 0 44px rgba(136, 103, 144, 0.28), 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* YouTube lore tiles: thumbnail with muted hover-preview */
.yt-thumb {
  position: relative;
  display: block;
  width: 100%;
}

.yt-thumb img {
  display: block;
  width: 100%;
}

.yt-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* the logo itself glows */
.hero-logo {
  filter: drop-shadow(0 0 26px rgba(136, 103, 144, 0.4));
}

/* footer hearts shimmer */
.decorative-hearts {
  text-shadow: 0 0 12px rgba(244, 195, 79, 0.6);
}

/* sub-headings carry a soft halo too */
.shop-section h3,
.social-section h3,
.link-card h3 {
  text-shadow: 0 0 18px rgba(136, 103, 144, 0.3);
}
/* =========================================
   TOS MAGIC PASS
   ========================================= */

/* the terms box becomes a framed artifact */
.tos-details {
  border-color: rgba(244, 195, 79, 0.35);
  box-shadow: 0 0 20px rgba(244, 195, 79, 0.15), 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* "How to Commission" turns into a glowing step timeline */
.tos-full ol {
  list-style: none;
  counter-reset: tos-step;
  padding-left: 0;
}

.tos-full ol li {
  counter-increment: tos-step;
  position: relative;
  padding-left: 44px;
  margin-bottom: 16px;
}

.tos-full ol li::before {
  content: counter(tos-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(136, 103, 144, 0.25);
  border: 1px solid rgba(244, 195, 79, 0.4);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
}

/* faint enchanted line connecting the steps */
.tos-full ol li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13.5px;
  top: 34px;
  bottom: -8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(244, 195, 79, 0.35), rgba(136, 103, 144, 0.15));
}
/* =========================================
   COMMISSION FORM
   ========================================= */

.contact-card > .social-section {
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(244, 195, 79, 0.25);
}

.contact-form {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  /* take at least the bottom half of the column */
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-family: var(--font-display);
  color: var(--text-heading);
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 16px;
}

/* message field grows to fill the leftover space */
.contact-form .form-group:last-of-type {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group:last-of-type textarea {
  flex: 1;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(44, 42, 53, 0.85) 0%, rgba(63, 61, 70, 0.85) 100%);
  color: var(--text-body);
  font-family: 'Fredoka', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 195, 79, 0.15);
}

/* Dark dropdown lists for Commission type / Budget range */
.contact-form select {
  color-scheme: dark;
}

.contact-form select option,
.contact-form select optgroup {
  background-color: var(--bg-page-deep);
  color: var(--text-body);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-send {
  width: 100%;
  margin-top: 4px;
}

/* locked state while commissions are closed */
.form-send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* dynamic open/closed banner at the top of the form */
.form-status {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 12px;
}

.form-status.closed {
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-status.open {
  color: #34d399;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* commissions status inside the top-bar tagline */
.top-bar-tagline .comms-open {
  color: #34d399;
}

/* prices page banner when commissions are open */
.prices-closed.open p {
  color: #34d399;
}

/* price card for a commission type that is currently unavailable */
.price-card.type-closed {
  opacity: 0.55;
}

.price-unavailable {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.18);
  border: 1px dashed rgba(128, 128, 128, 0.4);
  color: #b9aabf;
  font-size: 0.78rem;
}

/* reference image upload */
.file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(244, 195, 79, 0.4);
  color: var(--accent);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.file-btn:hover {
  background: rgba(244, 195, 79, 0.08);
  border-color: var(--accent);
}

.file-btn input {
  display: none;
}

.file-name {
  display: block;
  margin-top: 8px;
  min-height: 1em;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* icons emit light when their button lights up */
.social-link:hover .soc-ico {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.85);
}

/* numbered quick-start steps */
.contact-steps {
  list-style: none;
  margin-bottom: 18px;
}

.contact-steps li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-body);
  line-height: 1.7;
}

.step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 195, 79, 0.4);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.contact-steps a {
  color: var(--accent);
}

/* grouped social clusters */
.cluster-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.social-cluster {
  margin-bottom: 14px;
}

.social-cluster:last-child {
  margin-bottom: 0;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

@media (max-width: 640px) {
  .cluster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* discreet admin key in the footer */
.admin-dot {
  opacity: 0.22;
  font-size: 0.75rem;
  text-decoration: none;
  margin-left: 10px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.admin-dot:hover {
  opacity: 1;
}

/* =========================================
   ADMIN INLINE EDITING
   ========================================= */

body.admin-editing .editable {
  outline: 2px dashed rgba(244, 195, 79, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
  cursor: text;
  transition: outline-color 0.2s, background 0.2s;
  position: relative;
}

body.admin-editing .editable:hover {
  outline-color: rgba(244, 195, 79, 0.7);
  background: rgba(244, 195, 79, 0.05);
}

body.admin-editing .editable.editing {
  outline: 2px solid #f4c34f;
  outline-offset: 2px;
  background: rgba(244, 195, 79, 0.08);
  box-shadow: 0 0 16px rgba(244, 195, 79, 0.2);
}

.edit-toolbar {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(32, 29, 38, 0.95);
  border: 1px solid rgba(244, 195, 79, 0.45);
  border-radius: 50px;
  box-shadow: 0 0 24px rgba(244, 195, 79, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 3000;
  transition: bottom 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.edit-toolbar.visible {
  bottom: 24px;
}

.edit-toolbar-label {
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.edit-save-btn,
.edit-cancel-btn {
  font-family: var(--font);
  font-size: 0.75rem;
  padding: 7px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.edit-save-btn {
  background: #886790;
  color: #fff;
}

.edit-save-btn:hover {
  background: #9b7aa5;
  transform: translateY(-1px);
}

.edit-cancel-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.edit-cancel-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.edit-toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-family: var(--font);
  font-size: 0.82rem;
  border-radius: 50px;
  z-index: 3001;
  transition: bottom 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.edit-toast-err {
  background: rgba(239, 68, 68, 0.9);
}

.edit-toast.show {
  bottom: 80px;
}

.edit-logout {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 3001;
  font-family: var(--font);
  font-size: 0.72rem;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.admin-editing .edit-logout {
  display: block;
}

.edit-logout:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.6);
}



/* =========================================
   MOBILE PERFORMANCE
   Disable costly GPU blurs and reduce hero
   video load on small screens.
   ========================================= */
@media (max-width: 768px) {
  header, nav, .navbar,
  .nav-links,
  .sticky-nav,
  .filter-bar,
  .portfolio-item,
  .price-card,
  .link-card,
  .shop-item,
  .shop-thumb,
  .card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}
