/* =========================
   1. Base / Theme
========================= */

:root {
  --bg: #0a0a0a;
  --bg-soft: #0d0d0d;
  --panel: #141414;
  --panel-2: #1c1c1c;
  --input: #101010;

  --text: #f5f5f5;
  --text-muted: #b8b8b8;
  --text-dim: #8a8a8a;

  --accent: #d6ff00;
  --accent-hover: #b8e600;
  --accent-soft: rgba(214, 255, 0, 0.14);

  --silver: #b0b0b0;
  --silver-dark: #2a2a2a;

  --red: #c1121f; /* keep only for errors / rare accents */
  --red-hover: #e01e2f;

  --border: rgba(176, 176, 176, 0.18);
  --border-soft: rgba(176, 176, 176, 0.12);

  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 18px 38px rgba(0, 0, 0, 0.28);

  --radius: 10px;
  --radius-lg: 14px;

  --container: 1200px;
  --transition: 0.22s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

/* =========================
   2. Shared Layout
========================= */

.section-inner,
.header-inner,
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.content-section {
  padding: 78px 24px;
}

.dark-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--bg-soft);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.section-inner h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.section-inner p {
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 16px;
}

/* =========================
   3. Carbon Panel
========================= */

.carbon-panel {
  position: relative;
  background: linear-gradient(180deg, #121212, #0a0a0a);
  overflow: hidden;
}

.carbon-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(27deg, rgba(255,255,255,0.035) 5px, transparent 5px),
    linear-gradient(207deg, rgba(255,255,255,0.035) 5px, transparent 5px),
    linear-gradient(27deg, rgba(0,0,0,0.16) 5px, transparent 5px),
    linear-gradient(207deg, rgba(0,0,0,0.16) 5px, transparent 5px);
  background-position: 0 0, 10px 10px, 0 10px, 10px 0;
  background-size: 20px 20px;
  opacity: 0.45;
  pointer-events: none;
}

.carbon-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(0,0,0,0.3));
  pointer-events: none;
}

.carbon-panel > * {
  position: relative;
  z-index: 1;
}

/* =========================
   4. Header / Navigation
========================= */

.site-header {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 24px;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 34px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.mobile-cta {
  display: none;
}

.desktop-cta {
  display: inline-block;
}

/* =========================
   5. Buttons
========================= */

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(176, 176, 176, 0.22);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--red);
}

/* =========================
   6. Home Hero
========================= */

.hero {
  padding: 96px 24px 88px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

/* =========================
   7. Page Hero
========================= */

.page-hero {
  padding: 96px 24px 88px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  line-height: 1.05;
  color: #fff;
}

.page-hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

/* =========================
   8. Cards / Services / Why
========================= */

.services,
.gallery-preview,
.why-us,
.cta {
  padding: 78px 24px;
}

.services h2,
.gallery-preview h2,
.why-us h2,
.cta h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
}

.services > .section-inner > .eyebrow,
.gallery-preview .eyebrow,
.why-us .eyebrow,
.cta .eyebrow {
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.01)
  );
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  z-index: 0;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.95),
    rgba(190,190,190,0.45),
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.15)
  );
  animation: silver-spin 4s linear infinite;
  z-index: -2;
}

.card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(
    180deg,
    rgba(20,20,20,0.96),
    rgba(10,10,10,0.98)
  );
  z-index: -1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover {
  transform: translateY(-4px);

  /* green accent border */
  border-color: rgba(214, 255, 0, 0.55);

  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.content-section .cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(176, 176, 176, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.info-box h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.2rem;
}

.info-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.why-item {
  padding: 24px 18px;
  text-align: center;
  border-radius: var(--radius-lg);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--border-soft);
}

/* =========================
   9. Process / CTA
========================= */

.process-list {
  margin: 0;
  padding-left: 22px;
  color: var(--text-muted);
  line-height: 1.95;
}

.process-list li {
  margin-bottom: 14px;
}

.process-list strong {
  color: #fff;
}

.cta {
  padding: 84px 24px;
  text-align: center;
  margin-top: 10px;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.cta p {
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================
   10. Home Gallery Placeholder
========================= */

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.gallery-placeholder {
  min-height: 240px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8f8f;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-soft);
}

/* =========================
   11. Contact Page
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-form-wrap {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}

.contact-form-wrap h2 {
  margin: 0 0 10px;
}

.contact-intro {
  margin-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px;
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7f7f7f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(193,18,31,0.8);
  box-shadow: 0 0 0 3px rgba(193,18,31,0.14);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-list strong {
  color: #fff;
}

.contact-list a,
.info-box a {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-list a:hover,
.info-box a:hover {
  color: var(--red);
}

/* =========================
   12. Gallery Page
========================= */

.gallery-filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  margin-bottom: 34px;
}

.gallery-filter {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(176, 176, 176, 0.18);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter:hover {
  color: #fff;
  border-color: rgba(214, 255, 0, 0.45);
}

.gallery-filter.active {
  color: #fff;
  border-color: rgba(214, 255, 0, 0.7);
  background: rgba(214, 255, 0, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.01)
  );
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.2s ease;
  z-index: 0;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.95),
    rgba(190,190,190,0.45),
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.15)
  );
  animation: silver-spin 4s linear infinite;
  z-index: -2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(
    180deg,
    rgba(20,20,20,0.96),
    rgba(10,10,10,0.98)
  );
  z-index: -1;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 255, 0, 0.55);
  box-shadow: var(--shadow-lg);
}

.gallery-image-placeholder {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    #121212;
}

.gallery-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-card-body {
  padding: 22px 20px 24px;
}

.gallery-card-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.1rem;
}

.gallery-card-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =========================
   13. Footer
========================= */

.site-footer {
  border-top: 1px solid #1a1a1a;
  margin-top: 80px;
}

.site-footer.carbon-panel {
  background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
}

.footer-inner {
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #aaa;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 18px 24px 22px;
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}

/* =========================
   14. Responsive
========================= */

@media (max-width: 1100px) {
  .content-section .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cards,
  .content-section .cards,
  .gallery-placeholder-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .hero {
    padding: 72px 20px 64px;
  }

  .content-section,
  .services,
  .gallery-preview,
  .why-us,
  .cta {
    padding: 56px 20px;
  }

  .page-hero-copy,
  .hero-copy,
  .section-copy {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 24px;
    width: 220px;
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: var(--radius);
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  }

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

  .main-nav a {
    width: 100%;
    font-size: 0.95rem;
  }

  .main-nav a::after {
    bottom: -3px;
  }

  .mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 12px 0;
    align-self: center !important;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}

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

  .gallery-image-placeholder,
  .gallery-image {
    min-height: 210px;
    height: 210px;
  }
}

.gallery-card {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.2s ease;
}

.shop-filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  margin-bottom: 34px;
}

.shop-filter {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(176, 176, 176, 0.18);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.shop-filter:hover {
  color: #fff;
  border-color: rgba(214, 255, 0, 0.45);
}

.shop-filter.active {
  color: #fff;
  border-color: rgba(214, 255, 0, 0.7);
  background: rgba(214, 255, 0, 0.12);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.shop-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.01)
  );
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 0;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 255, 0, 0.55);
  box-shadow: var(--shadow-lg);
}

.shop-image-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    #121212;
}

.shop-card-body {
  padding: 22px 20px 24px;
}

.shop-tag {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.shop-card-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.1rem;
}

.shop-card-body p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.shop-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.shop-link:hover {
  color: var(--red);
}

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .shop-image-placeholder {
    min-height: 210px;
  }
}

.plush-card {
  border-color: rgba(255, 100, 150, 0.25);
}

.plush-card:hover {
  border-color: rgba(255, 100, 150, 0.6);
}

.plush-card .shop-tag {
  color: #ff6fa5;
}

.shop-subbrand {
  margin: 0 0 6px;
  font-size: 0.8rem;
  color: #ff6fa5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-image {
  width: 100%;
  height: 305px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-image {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.lightbox-close:hover {
  color: var(--red);
}

.gallery-image {
  cursor: pointer;
}

.main-nav a.active {
  color: #fff;
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.card:hover .card-image {
  transform: scale(1.03);
}

.hero-performance {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 90px;
  background:
    radial-gradient(circle at top right, rgba(214,255,0,0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.06), transparent 24%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.02), transparent 35%),
    linear-gradient(315deg, rgba(255,255,255,0.015), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.hero-performance h1 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.98;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-highlight {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(176,176,176,0.14);
  backdrop-filter: blur(4px);
}

.hero-highlight-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-highlight-value {
  display: block;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.36);
}

.hero-visual-content {
  position: relative;
  z-index: 2;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
}

.hero-visual-tag {
  display: inline-block;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214,255,0,0.28);
  background: rgba(214,255,0,0.08);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-visual-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hero-visual-content p {
  margin: 0 0 22px;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-visual-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-visual-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(214,255,0,0.95),
    rgba(176,176,176,0.75)
  );
}

.hero-visual-bars span:nth-child(1) {
  width: 92%;
}

.hero-visual-bars span:nth-child(2) {
  width: 76%;
}

.hero-visual-bars span:nth-child(3) {
  width: 58%;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(214,255,0,0.18);
  pointer-events: none;
  z-index: 1;
}

.hero-ring-one {
  width: 320px;
  height: 320px;
  top: -40px;
  right: -90px;
  box-shadow: 0 0 50px rgba(214,255,0,0.06);
}

.hero-ring-two {
  width: 180px;
  height: 180px;
  bottom: 30px;
  left: -50px;
  border-color: rgba(176,176,176,0.18);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual-card {
    max-width: 560px;
    min-height: 360px;
  }

  .hero-visual-content {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .hero-performance {
    padding: 84px 20px 64px;
  }

  .hero-performance h1 {
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-visual-card {
    min-height: 320px;
  }

  .hero-visual-content {
    min-height: 320px;
    padding: 26px 22px;
  }
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logo img {
  height: 55px;
  display: block;
}

.logo img {
  height: 55px;
  display: block;
  transition: transform 0.2s ease;
}

.logo:hover img {
  transform: scale(1.04);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 40px;
}

