/* ═══════════════════════════════════════════════════════════════
   GINGER DEREKSEN — Full Website Stylesheet
   Journalism & Art Aesthetic:
   Deep Teal #0d7377 | Warm Gold #d4a017 | Charcoal #2d2d2d | Cream #f5f0e8
   ═══════════════════════════════════════════════════════════════ */

:root {
  --teal: #0d7377;
  --teal-light: #14919b;
  --teal-deep: #0a5a5e;
  --teal-glow: rgba(13,115,119,.28);
  --gold: #d4a017;
  --gold-light: #e8b83a;
  --gold-glow: rgba(212,160,23,.25);
  --charcoal: #2d2d2d;
  --charcoal-light: #3d3d3d;
  --charcoal-deep: #1a1a1a;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --ink: #2d2d2d;
  --muted: #7a7a6e;
  --line: rgba(45,45,45,.12);
  --shadow-card: 0 26px 80px rgba(45,45,45,.30), 0 0 0 1px rgba(255,255,255,.06);
  --shadow-sm: 0 4px 16px rgba(45,45,45,.15);
  --shadow-md: 0 12px 40px rgba(45,45,45,.22);
  --shadow-teal: 0 12px 40px rgba(13,115,119,.25);
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Tangerine", "Brush Script MT", cursive;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(ellipse at top, var(--cream) 0%, #efe8d8 50%, #e0d8c4 100%);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--teal); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--teal-light); }

/* ═══════════ NAVIGATION ═══════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(45,45,45,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s ease;
}
.navbar-scrolled {
  background: rgba(26,26,26,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.navbar-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); text-decoration: none;
}
.navbar-brand:hover { color: var(--gold-light); }
.navbar-logo {
  height: 36px; width: auto;
}
.navbar-brand span {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; align-items: center;
  margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
  padding: 8px 14px; border-radius: 8px;
  transition: all .3s ease;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(212,160,23,.1);
}
.nav-card-link {
  border: 1px solid rgba(212,160,23,.4) !important;
  border-radius: 20px !important;
}
.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 24px; cursor: pointer; padding: 8px;
}

/* ═══════════ HERO SECTION ═══════════ */
.hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal) 40%, var(--teal-deep) 100%);
  overflow: hidden;
  padding-top: 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,160,23,.08)" stroke-width=".5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(212,160,23,.05)" stroke-width=".5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(212,160,23,.03)" stroke-width=".5"/></svg>');
  background-size: 200px 200px;
  opacity: .5;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 700px; padding: 60px 24px 40px;
}
.hero-avatar, .hero-headshot {
  width: 140px; height: 140px; border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,160,23,.25), 0 0 80px rgba(13,115,119,.15);
  margin-bottom: 24px;
  object-fit: cover;
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; color: var(--white); line-height: 1.1;
  margin-bottom: 16px; letter-spacing: -1px;
}
.hero h1 .text-gold { color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-body); font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,.7); font-weight: 400;
  margin-bottom: 8px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-tagline {
  font-family: var(--font-script); font-size: clamp(28px, 4vw, 42px);
  color: var(--gold); margin: 24px 0 40px;
  text-shadow: 0 2px 20px rgba(212,160,23,.3);
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; letter-spacing: .5px;
  transition: all .3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal-deep);
  box-shadow: 0 4px 20px rgba(212,160,23,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,.5);
  color: var(--charcoal-deep);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212,160,23,.1);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,115,119,.4);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,115,119,.5);
  color: var(--white);
}

/* ═══════════ SECTION STYLING ═══════════ */
.section {
  padding: 100px 24px; max-width: var(--max-width); margin: 0 auto;
}
.section-dark {
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
}
.section-teal {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
}
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.section-dark .section-label, .section-teal .section-label { color: var(--gold); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-subtitle, .section-teal .section-subtitle {
  color: rgba(255,255,255,.7);
}

/* ═══════════ CARDS GRID ═══════════ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all .4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.card-image {
  width: 100%; height: 200px; overflow: hidden;
  background: var(--cream-dark);
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.card-body { padding: 28px; }
.card-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
}
.card-text {
  font-size: 15px; color: var(--muted); line-height: 1.7;
}

/* ═══════════ PAGE HEADER ═══════════ */
.page-header {
  position: relative; padding: 160px 24px 80px;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--teal-deep) 100%);
  text-align: center; overflow: hidden;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,160,23,.06)" stroke-width=".5"/></svg>');
  background-size: 150px 150px;
}
.page-header-content { position: relative; z-index: 2; }
.breadcrumbs {
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,.6); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; }
.breadcrumbs .current { color: var(--gold); }
.page-title {
  font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.page-title .text-gold { color: var(--gold); }
.page-subtitle {
  font-size: 18px; color: rgba(255,255,255,.65);
  max-width: 600px; margin: 0 auto;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--charcoal-deep); color: rgba(255,255,255,.6);
  padding: 60px 24px 30px; text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-logo {
  font-family: var(--font-serif); font-size: 24px; font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,.5); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex; justify-content: center; gap: 16px; margin-bottom: 24px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 18px;
  transition: all .3s ease;
}
.footer-social a:hover {
  background: var(--gold); color: var(--charcoal-deep);
  transform: translateY(-3px);
}
.footer-copy {
  font-size: 13px; color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}

/* ═══════════ ART OR NOT PAGE ═══════════ */
.artnot-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px; margin-top: 40px;
}
.artnot-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all .4s ease;
}
.artnot-card:hover { box-shadow: var(--shadow-md); }
.artnot-images {
  position: relative; display: flex; overflow: hidden;
}
.artnot-images img {
  width: 50%; height: 280px; object-fit: cover;
  transition: transform .4s ease;
}
.artnot-images img:hover { transform: scale(1.05); }
.artnot-before-after {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.7); color: var(--white);
  padding: 4px 16px; border-radius: 20px; font-size: 12px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  z-index: 2;
}
.artnot-body { padding: 32px; }
.artnot-question {
  font-family: var(--font-serif); font-size: 24px; font-weight: 700;
  text-align: center; margin-bottom: 8px; color: var(--ink);
}
.artnot-desc {
  text-align: center; color: var(--muted); font-size: 14px;
  margin-bottom: 24px; line-height: 1.6;
}
.artnot-vote {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 24px;
}
.artnot-vote-btn {
  flex: 1; max-width: 160px; padding: 16px 24px;
  border-radius: var(--radius); border: 2px solid var(--line);
  background: var(--white); cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  text-align: center; transition: all .3s ease;
}
.artnot-vote-btn:hover { transform: translateY(-2px); }
.artnot-vote-btn.vote-art {
  border-color: var(--teal); color: var(--teal);
}
.artnot-vote-btn.vote-art:hover, .artnot-vote-btn.vote-art.voted {
  background: var(--teal); color: var(--white);
  box-shadow: var(--shadow-teal);
}
.artnot-vote-btn.vote-not {
  border-color: #c0392b; color: #c0392b;
}
.artnot-vote-btn.vote-not:hover, .artnot-vote-btn.vote-not.voted {
  background: #c0392b; color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,.3);
}
.artnot-results {
  margin-top: 16px;
}
.artnot-bar {
  height: 8px; border-radius: 4px; background: var(--cream-dark);
  overflow: hidden; margin-bottom: 8px;
}
.artnot-bar-fill {
  height: 100%; border-radius: 4px;
  transition: width .8s ease;
}
.artnot-bar-fill.art { background: var(--teal); }
.artnot-bar-fill.not { background: #c0392b; }
.artnot-stats {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.artnot-comments {
  margin-top: 24px; border-top: 1px solid var(--line); padding-top: 24px;
}
.artnot-comments h4 {
  font-size: 14px; font-weight: 600; margin-bottom: 16px;
  color: var(--ink); text-transform: uppercase; letter-spacing: 1px;
}
.artnot-comment {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--muted);
}
.artnot-comment:last-child { border-bottom: none; }
.artnot-comment-form {
  margin-top: 16px; display: flex; gap: 8px;
}
.artnot-comment-form input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--line);
  border-radius: 8px; font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color .3s ease;
}
.artnot-comment-form input:focus { border-color: var(--teal); }
.artnot-comment-form button {
  padding: 12px 20px; background: var(--teal); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: 14px; transition: all .3s ease;
}
.artnot-comment-form button:hover { background: var(--teal-light); }
.artnot-share {
  margin-top: 20px; text-align: center;
}
.artnot-share-label {
  font-size: 12px; color: var(--muted); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}
.artnot-share-buttons {
  display: flex; gap: 8px; justify-content: center;
}
.artnot-share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white); text-decoration: none;
  transition: all .3s ease;
}
.artnot-share-btn:hover { transform: translateY(-3px); }
.artnot-share-btn.facebook { background: #1877f2; }
.artnot-share-btn.twitter { background: #1da1f2; }
.artnot-share-btn.pinterest { background: #e60023; }
.artnot-share-btn.copy { background: var(--charcoal); }

/* ═══════════ GALLERY ═══════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 1/1;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: all .4s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: var(--white); font-size: 14px; font-weight: 500;
}

/* ═══════════ VIDEO EMBEDS ═══════════ */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.video-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all .4s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-placeholder {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: var(--charcoal); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 48px;
}
.video-body { padding: 24px; }
.video-title {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.video-desc {
  font-size: 14px; color: var(--muted); line-height: 1.6;
}

/* ═══════════ STANDALONE CARD (Digital Business Card) ═══════════ */
.standalone-card-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal) 40%, var(--teal-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.standalone-card {
  width: 100%; max-width: 420px;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.sc-card-hero {
  position: relative; text-align: center;
  padding: 48px 32px 32px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
}
.sc-hero-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.sc-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  margin-bottom: 20px; object-fit: cover;
}
.sc-card-hero h1 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 800;
  margin-bottom: 4px; letter-spacing: -0.5px;
}
.sc-hero-subtitle {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.sc-hero-tagline {
  font-family: var(--font-script); font-size: 24px;
  color: var(--gold); margin-top: 8px;
}
.sc-card-content { padding: 32px; }
.sc-btn-save {
  width: 100%; padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal-deep); border: none; border-radius: 12px;
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(212,160,23,.3);
  margin-bottom: 16px;
}
.sc-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,.4);
}
.sc-btn-save-icon { font-size: 20px; font-weight: 700; }

/* Contact dropdown */
.sc-contact-dropdown { position: relative; margin-bottom: 16px; }
.sc-btn-contact {
  width: 100%; padding: 14px 20px;
  background: var(--white); border: 2px solid var(--line);
  border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--ink); transition: all .3s ease;
}
.sc-btn-contact:hover { border-color: var(--teal); }
.sc-contact-icon { font-size: 20px; }
.sc-contact-label { flex: 1; text-align: left; }
.sc-contact-caret { font-size: 12px; transition: transform .3s ease; }
.sc-contact-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-md);
  margin-top: 4px; z-index: 100; overflow: hidden;
}
.sc-contact-menu.open { display: block; }
.sc-contact-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; text-decoration: none; color: var(--ink);
  transition: background .3s ease;
  border-bottom: 1px solid var(--line);
}
.sc-contact-option:last-child { border-bottom: none; }
.sc-contact-option:hover { background: var(--cream); }
.sc-co-icon { font-size: 20px; width: 32px; text-align: center; }
.sc-co-text { display: flex; flex-direction: column; }
.sc-co-title { font-weight: 600; font-size: 14px; }
.sc-co-detail { font-size: 12px; color: var(--muted); }

/* Social links */
.sc-social-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 16px;
}
.sc-social-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 16px 8px;
  background: var(--cream); border-radius: 12px;
  text-decoration: none; color: var(--ink);
  transition: all .3s ease;
}
.sc-social-btn:hover {
  background: var(--teal); color: var(--white);
  transform: translateY(-2px);
}
.sc-social-icon { font-size: 24px; }
.sc-social-label { font-size: 11px; font-weight: 600; }

/* Website link */
.sc-website-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; background: var(--cream);
  border-radius: 12px; text-decoration: none; color: var(--ink);
  margin-bottom: 16px; transition: all .3s ease;
}
.sc-website-link:hover { background: var(--cream-dark); }
.sc-website-icon { font-size: 20px; }
.sc-website-text { flex: 1; }
.sc-website-title { font-weight: 600; font-size: 14px; }
.sc-website-url { font-size: 12px; color: var(--muted); }

/* Owner section */
.sc-owner-section { margin-top: 24px; }
.sc-owner-divider {
  height: 1px; background: var(--line); margin-bottom: 20px;
}
.sc-owner-label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px;
  text-align: center; margin-bottom: 16px;
}
.sc-owner-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.sc-owner-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 14px 8px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  color: var(--ink); transition: all .3s ease;
}
.sc-owner-btn:hover {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.sc-owner-btn-icon { font-size: 20px; }

/* About overlay */
.sc-about-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.sc-about-overlay.open { display: flex; }
.sc-about-panel {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; max-height: 80vh;
  overflow-y: auto; padding: 40px;
  position: relative;
}
.sc-about-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
}
.sc-about-name {
  font-family: var(--font-serif); font-size: 28px; font-weight: 800;
  margin-bottom: 4px;
}
.sc-about-role {
  font-size: 14px; color: var(--teal); font-weight: 600;
  margin-bottom: 20px;
}
.sc-about-body p {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  margin-bottom: 16px;
}
.sc-dropcap::first-letter {
  font-family: var(--font-serif); font-size: 48px; font-weight: 800;
  float: left; line-height: 1; margin-right: 8px; color: var(--teal);
}
.sc-about-sig {
  font-family: var(--font-script); font-size: 28px;
  color: var(--teal); margin-top: 24px; text-align: right;
}

/* QR overlay */
.sc-qr-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.sc-qr-overlay.active { display: flex; }
.sc-qr-panel {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; max-width: 360px; width: 100%;
}
.sc-qr-panel h3 {
  font-family: var(--font-serif); font-size: 24px; margin-bottom: 8px;
}
.sc-qr-panel p {
  font-size: 14px; color: var(--muted); margin-bottom: 24px;
}
.sc-qr-panel img {
  width: 250px; height: 250px; margin-bottom: 24px;
  border-radius: 12px;
}
.sc-qr-actions { display: flex; gap: 12px; justify-content: center; }
.sc-qr-actions a, .sc-qr-actions button {
  padding: 10px 20px; border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer; text-decoration: none;
  transition: all .3s ease;
}
.sc-qr-download {
  background: var(--teal); color: var(--white); border: none;
}
.sc-qr-close-btn {
  background: var(--cream); color: var(--ink); border: 1px solid var(--line);
}

/* Send menu */
.sc-send-menu {
  display: none; margin-top: 12px;
}
.sc-send-menu.open { display: block; }
.sc-send-option {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 12px 16px; margin-bottom: 8px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  transition: all .3s ease;
}
.sc-send-option:hover { background: var(--teal); color: var(--white); }

/* Homescreen tips */
.sc-homescreen-tips {
  display: none; margin-top: 12px;
}
.sc-homescreen-tips.open { display: block; }
.sc-hs-tabs {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.sc-hs-tab {
  flex: 1; padding: 10px; text-align: center;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; font-size: 13px;
  font-weight: 600; transition: all .3s ease;
}
.sc-hs-tab.active {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.sc-hs-step {
  display: flex; gap: 12px; margin-bottom: 12px;
  align-items: flex-start;
}
.sc-hs-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.sc-hs-step p { font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ═══════════ CONTACT FORM ═══════════ */
.contact-form {
  max-width: 600px; margin: 0 auto;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; color: var(--ink);
}
.form-input, .form-textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color .3s ease;
  background: var(--white);
}
.form-input:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white); border: none; border-radius: 10px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all .3s ease;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

/* ═══════════ SOCIAL EMBED SECTION ═══════════ */
.social-embed-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.social-embed-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  min-height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px; text-align: center;
}
.social-embed-icon {
  font-size: 48px; margin-bottom: 16px;
}
.social-embed-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  margin-bottom: 8px;
}
.social-embed-desc {
  font-size: 14px; color: var(--muted); margin-bottom: 20px;
}

/* ═══════════ ART PREVIEW (Homepage) ═══════════ */
.art-preview {
  display: flex; gap: 40px; align-items: center;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  padding: 40px;
}
.art-preview-images {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.art-preview-img {
  position: relative; width: 200px; height: 200px;
  border-radius: var(--radius); overflow: hidden;
}
.art-preview-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.art-preview-arrow {
  font-size: 32px; color: var(--gold); font-weight: 700;
}
.art-label {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.7); color: var(--white);
  padding: 2px 10px; border-radius: 12px; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.art-preview-text h3 {
  font-family: var(--font-serif); font-size: 24px; margin-bottom: 12px;
}
.art-preview-text p {
  color: var(--muted); margin-bottom: 20px; line-height: 1.7;
}
@media (max-width: 768px) {
  .art-preview { flex-direction: column; padding: 24px; }
  .art-preview-img { width: 140px; height: 140px; }
}

/* ═══════════ ABOUT SECTION ═══════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-content h3 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 700;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px; line-height: 1.8; color: var(--muted);
  margin-bottom: 16px;
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 24px;
}
.about-highlight {
  padding: 16px; background: var(--cream);
  border-radius: 10px; text-align: center;
}
.about-highlight-number {
  font-family: var(--font-serif); font-size: 28px; font-weight: 800;
  color: var(--teal);
}
.about-highlight-label {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.9); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90%; max-height: 85vh;
  border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: var(--white); font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: 14px; text-align: center;
}

/* ═══════════ UTILITIES ═══════════ */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .navbar-inner { padding: 0 16px; }
  .nav-links {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(26,26,26,.98); flex-direction: column;
    padding: 16px; gap: 0;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    display: block; padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-toggle { display: block; }
  .section { padding: 60px 16px; }
  .hero-content { padding: 60px 16px 40px; }
  .hero-avatar, .hero-headshot { width: 120px; height: 120px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .artnot-images { flex-direction: column; }
  .artnot-images img { width: 100%; height: 200px; }
  .artnot-vote { flex-direction: column; align-items: center; }
  .artnot-vote-btn { max-width: 100%; width: 100%; }
  .sc-social-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-owner-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .cards-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .social-embed-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-tagline { font-size: 28px; }
  .section-title { font-size: 28px; }
  .page-title { font-size: 30px; }
  .standalone-card { max-width: 100%; }
  .sc-card-hero h1 { font-size: 26px; }
  .artnot-comment-form { flex-direction: column; }
}

/* ═══════════ PRINT ═══════════ */
@media print {
  .navbar, .footer, .hero-buttons, .artnot-vote, .artnot-comment-form, .artnot-share { display: none; }
  body { background: white; }
  .section { padding: 20px; }
}
