@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --clr-bg: #0d0c10;
  --clr-bg-2: #13111a;
  --clr-bg-3: #1a1726;
  --clr-surface: #1e1b2e;
  --clr-surface-2: #252236;
  --clr-border: rgba(180, 160, 255, 0.1);
  --clr-border-2: rgba(180, 160, 255, 0.18);

  --clr-gold: #c9a84c;
  --clr-gold-light: #e8c96e;
  --clr-gold-dim: rgba(201, 168, 76, 0.15);
  --clr-copper: #b87333;
  --clr-amethyst: #9b72cf;
  --clr-amethyst-light: #b898e8;
  --clr-amethyst-dim: rgba(155, 114, 207, 0.12);

  --clr-text: #e8e4f0;
  --clr-text-muted: #9e97b8;
  --clr-text-faint: #6b6488;

  --ff-heading: 'Unbounded', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --fs-xs: clamp(0.7rem, 1vw, 0.75rem);
  --fs-sm: clamp(0.8rem, 1.2vw, 0.875rem);
  --fs-base: clamp(0.9rem, 1.5vw, 1rem);
  --fs-md: clamp(1rem, 1.8vw, 1.125rem);
  --fs-lg: clamp(1.1rem, 2vw, 1.25rem);
  --fs-xl: clamp(1.3rem, 3vw, 1.75rem);
  --fs-2xl: clamp(1.6rem, 4vw, 2.25rem);
  --fs-3xl: clamp(2rem, 5vw, 3rem);
  --fs-hero: clamp(2.4rem, 7vw, 5rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-card: 0 2px 8px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3), 0 1px 2px rgba(155,114,207,0.08);
  --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.4), 0 2px 4px rgba(201,168,76,0.12);
  --shadow-nav: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-glow-gold: 0 0 20px rgba(201,168,76,0.2);
  --shadow-glow-amethyst: 0 0 20px rgba(155,114,207,0.2);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: var(--fs-base);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body main {
  flex: 1;
}

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

a {
  color: var(--clr-amethyst-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--clr-gold-light);
}

address {
  font-style: normal;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  color: var(--clr-text);
}

h1 { font-size: var(--fs-3xl); font-weight: 700; }
h2 { font-size: var(--fs-2xl); font-weight: 600; }
h3 { font-size: var(--fs-xl);  font-weight: 600; }
h4 { font-size: var(--fs-lg);  font-weight: 500; }
h5 { font-size: var(--fs-md);  font-weight: 500; }

p {
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

/* ── Utilities ── */

.u-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.u-container--narrow {
  max-width: 780px;
}

.u-section {
  padding: var(--space-2xl) 0;
}

.u-label {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.u-text-center {
  text-align: center;
}

.u-hidden {
  display: none !important;
}

.u-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.u-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 48px;
}

.c-btn--primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-copper));
  color: #0d0c10;
  box-shadow: 0 2px 8px rgba(201,168,76,0.25), 0 1px 2px rgba(0,0,0,0.3);
}

.c-btn--primary:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #0d0c10;
  box-shadow: var(--shadow-glow-gold), 0 4px 16px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.c-btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border-2);
}

.c-btn--ghost:hover {
  border-color: var(--clr-amethyst);
  color: var(--clr-amethyst-light);
  box-shadow: var(--shadow-glow-amethyst);
  transform: translateY(-2px);
}

.c-btn--full {
  width: 100%;
}

/* ── Link Arrow ── */

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-base);
}

.c-link-arrow:hover {
  gap: 0.75rem;
  color: var(--clr-gold-light);
}

/* ── Nav ── */

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-nav);
  transition: box-shadow var(--transition-base);
}

.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

.c-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.c-nav__logo img {
  height: 36px;
  width: auto;
}

.c-nav__links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .c-nav__links {
    display: flex;
  }
}

.c-nav__links a {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.c-nav__links a:hover {
  color: var(--clr-text);
  border-color: var(--clr-gold);
}

.c-nav__links a.is-active {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.c-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.c-nav__search-btn {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}

.c-nav__search-btn:hover {
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
}

.c-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

@media (min-width: 900px) {
  .c-nav__hamburger {
    display: none;
  }
}

.c-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text-muted);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.c-nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--clr-gold);
}

.c-nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.c-nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--clr-gold);
}

.c-nav__hamburger:hover {
  background: var(--clr-gold-dim);
}

.c-nav__mobile-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  border-top: 1px solid transparent;
  background: var(--clr-bg-2);
}

@media (min-width: 900px) {
  .c-nav__mobile-panel {
    display: none;
  }
}

.c-nav__mobile-panel a {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: 1rem var(--space-md);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition-base), background var(--transition-base), padding-left var(--transition-base);
}

.c-nav__mobile-panel a:hover {
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  padding-left: calc(var(--space-md) + 8px);
}

.c-nav__mobile-panel a.is-active {
  color: var(--clr-gold);
}

.c-nav__mobile-panel a:last-child {
  border-bottom: none;
}

.c-nav__mobile-panel.is-open {
  max-height: 400px;
  border-top-color: var(--clr-border);
}

/* ── Search Overlay ── */

.c-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 12, 16, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.c-search-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-search-overlay__inner {
  width: 100%;
  max-width: 680px;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.c-search-overlay__input {
  flex: 1;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-2);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-xl);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-base);
}

.c-search-overlay__input::placeholder {
  color: var(--clr-text-faint);
}

.c-search-overlay__input:focus {
  border-color: var(--clr-amethyst);
}

.c-search-overlay__close {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.c-search-overlay__close:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* ── Breadcrumb ── */

.c-breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
  margin-top: var(--nav-height);
}

.c-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.c-breadcrumb a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-decoration: none;
}

.c-breadcrumb a:hover {
  color: var(--clr-gold);
}

.c-breadcrumb span {
  font-size: var(--fs-sm);
  color: var(--clr-text-faint);
}

.c-breadcrumb span[aria-current="page"] {
  color: var(--clr-gold);
}

/* ── Hero ── */

.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.s-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.s-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.7);
}

.s-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,12,16,0.9) 40%, rgba(13,12,16,0.4) 100%),
    linear-gradient(to top, rgba(13,12,16,0.8) 0%, transparent 60%);
}

.s-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--space-md);
  max-width: 760px;
}

.s-hero__eyebrow {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
  padding: 0.4rem 1rem;
  border: 1px solid var(--clr-gold-dim);
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
}

.s-hero__heading {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--clr-text);
}

.s-hero__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amethyst-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s-hero__sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.s-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.s-hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--clr-text-faint);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--ff-heading);
}

.s-hero__scroll-hint i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Intro ── */

.s-intro {
  background: var(--clr-bg);
}

.s-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .s-intro__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.s-intro__text h2 {
  margin-bottom: var(--space-md);
}

.s-intro__text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.s-intro__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

/* ── Categories ── */

.s-categories--dark {
  background: var(--clr-bg-2);
}

.s-categories__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.s-categories__header h2 {
  margin-bottom: var(--space-sm);
}

.s-categories__sub {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.s-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .s-categories__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .s-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Category Card ── */

.c-cat-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.c-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--clr-gold);
}

.c-cat-card__icon {
  display: none;
}

.c-cat-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.c-cat-card:hover img {
  transform: scale(1.04);
}

.c-cat-card__body {
  padding: var(--space-md);
}

.c-cat-card__body h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.c-cat-card__body p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Features ── */

.s-features {
  background: var(--clr-bg);
}

.s-features__header {
  margin-bottom: var(--space-xl);
}

.s-features__header h2 {
  margin-bottom: var(--space-sm);
}

.s-features__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .s-features__cols {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-xl);
  }
}

.s-features__col {
  display: flex;
  flex-direction: column;
}

/* ── Feature Item ── */

.c-feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition-base);
}

.c-feature-item:last-child {
  border-bottom: none;
}

.c-feature-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-amethyst-dim);
  border-radius: var(--radius-sm);
  color: var(--clr-amethyst-light);
  font-size: 1rem;
  transition: background var(--transition-base), color var(--transition-base);
}

.c-feature-item:hover .c-feature-item__icon {
  background: var(--clr-gold-dim);
  color: var(--clr-gold);
}

.c-feature-item__text h4 {
  margin-bottom: 0.4rem;
  font-size: var(--fs-md);
}

.c-feature-item__text p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Cities ── */

.s-cities--accent {
  background: var(--clr-bg-3);
  position: relative;
  overflow: hidden;
}

.s-cities--accent::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155,114,207,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.s-cities__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.s-cities__header h2 {
  margin-bottom: var(--space-sm);
}

.s-cities__header p {
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.s-cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ── City Tag ── */

.c-city-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--clr-border-2);
  border-radius: 100px;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  transition: all var(--transition-base);
  cursor: default;
}

.c-city-tag:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.1);
}

/* ── Showcase ── */

.s-showcase {
  background: var(--clr-bg);
}

.s-showcase__header {
  margin-bottom: var(--space-xl);
}

.s-showcase__header h2 {
  margin-bottom: var(--space-sm);
}

.s-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 700px) {
  .s-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .s-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.s-showcase__cta {
  margin-top: var(--space-md);
}

/* ── Workshop Card ── */

.c-workshop-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.c-workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--clr-amethyst);
}

.c-workshop-card__img {
  position: relative;
  overflow: hidden;
}

.c-workshop-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.c-workshop-card:hover .c-workshop-card__img img {
  transform: scale(1.05);
}

.c-workshop-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(13,12,16,0.85);
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--clr-gold-dim);
  backdrop-filter: blur(4px);
}

.c-workshop-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-workshop-card__city {
  font-size: var(--fs-xs);
  color: var(--clr-amethyst-light);
  font-family: var(--ff-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.c-workshop-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.c-workshop-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.c-workshop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}

.c-workshop-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  font-family: var(--ff-heading);
  font-weight: 500;
}

.c-workshop-card__meta span i {
  color: var(--clr-amethyst);
}

/* ── FAQ ── */

.s-faq--dark {
  background: var(--clr-bg-2);
}

.s-faq__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.s-faq__header h2 {
  margin-bottom: var(--space-sm);
}

.s-faq__sub {
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.s-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .s-faq__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── FAQ Card ── */

.c-faq-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.c-faq-card:hover {
  border-color: var(--clr-amethyst);
  box-shadow: var(--shadow-glow-amethyst), var(--shadow-card);
}

.c-faq-card.is-active {
  border-color: var(--clr-gold);
}

.c-faq-card__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: none;
  border: none;
  color: var(--clr-text);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
  min-height: 56px;
}

.c-faq-card__question span {
  flex: 1;
  line-height: 1.4;
}

.c-faq-card__question i {
  flex-shrink: 0;
  color: var(--clr-amethyst);
  font-size: 0.85rem;
  transition: transform var(--transition-base), color var(--transition-base);
}

.c-faq-card__question:hover {
  color: var(--clr-gold);
}

.c-faq-card__question:hover i {
  color: var(--clr-gold);
}

.c-faq-card__question[aria-expanded="true"] {
  color: var(--clr-gold);
}

.c-faq-card__question[aria-expanded="true"] i {
  transform: rotate(45deg);
  color: var(--clr-gold);
}

.c-faq-card__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition-base);
}

.c-faq-card__answer p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}

.c-faq-card__answer.is-open {
  max-height: 300px;
}

/* ── CTA Banner ── */

.s-cta-banner {
  background: var(--clr-bg);
}

.s-cta-banner__inner {
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-bg-3) 100%);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .s-cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.s-cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.s-cta-banner__text h2 {
  margin-bottom: 0.5rem;
  font-size: var(--fs-2xl);
}

.s-cta-banner__text p {
  color: var(--clr-text-muted);
  margin: 0;
}

.s-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Page Hero ── */

.s-page-hero {
  background: var(--clr-bg-2);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

.s-page-hero h1 {
  margin-bottom: var(--space-md);
  max-width: 720px;
}

.s-page-hero__sub {
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  max-width: 620px;
  line-height: 1.8;
  margin: 0;
}

/* ── About Detail ── */

.s-about-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .s-about-detail__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.s-about-detail__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.s-about-detail__text h2 {
  margin-bottom: var(--space-md);
}

.s-about-detail__text p {
  color: var(--clr-text-muted);
}

/* ── Mission ── */

.s-mission--dark {
  background: var(--clr-bg-2);
}

.s-mission__inner {
  max-width: 860px;
  margin: 0 auto;
}

.s-mission__lead {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.s-mission h2 {
  margin-bottom: var(--space-md);
}

.s-mission__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .s-mission__points {
    grid-template-columns: 1fr 1fr;
  }
}

.s-mission__point {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.s-mission__point i {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.s-mission__point h4 {
  margin-bottom: 0.35rem;
}

.s-mission__point p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin: 0;
}

/* ── How It Works ── */

.s-how-it-works__header {
  margin-bottom: var(--space-xl);
}

.s-how-it-works__header h2 {
  margin-bottom: var(--space-sm);
}

.s-how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Step ── */

.c-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--clr-border);
  align-items: flex-start;
  transition: background var(--transition-base);
}

.c-step:last-child {
  border-bottom: none;
}

.c-step__number {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-gold-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  transition: color var(--transition-base);
}

.c-step:hover .c-step__number {
  color: var(--clr-gold);
}

.c-step__text h3 {
  margin-bottom: 0.5rem;
}

.c-step__text p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  margin: 0;
}

/* ── Payment Info ── */

.s-payment-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .s-payment-info__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Payment Block ── */

.c-payment-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.c-payment-block:hover {
  transform: translateY(-4px);
  border-color: var(--clr-amethyst);
}

.c-payment-block__icon {
  font-size: 1.75rem;
  color: var(--clr-amethyst-light);
  margin-bottom: var(--space-md);
}

.c-payment-block h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.c-payment-block p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.c-payment-block p:last-child {
  margin-bottom: 0;
}

/* ── Payment Note ── */

.s-payment-note--dark {
  background: var(--clr-bg-2);
}

.s-payment-note__inner {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-gold-dim);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glow-gold);
}

.s-payment-note__icon {
  font-size: 2rem;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.s-payment-note h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.s-payment-note p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  margin: 0;
  line-height: 1.7;
}

/* ── Payment Types ── */

.s-payment-types__header {
  margin-bottom: var(--space-xl);
}

.s-payment-types__header h2 {
  margin-bottom: var(--space-sm);
}

.s-payment-types__header p {
  color: var(--clr-text-muted);
  max-width: 540px;
}

.s-payment-types__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .s-payment-types__list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Price Type ── */

.c-price-type {
  padding: var(--space-md);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.c-price-type h4 {
  color: var(--clr-amethyst-light);
  margin-bottom: 0.5rem;
  font-size: var(--fs-md);
}

.c-price-type p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

.c-price-type:hover {
  border-color: var(--clr-amethyst);
  transform: translateY(-3px);
}

/* ── Events Filter ── */

.s-events-filter__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

/* ── Filter Button ── */

.c-filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--clr-border-2);
  border-radius: 100px;
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.c-filter-btn:hover {
  border-color: var(--clr-amethyst);
  color: var(--clr-amethyst-light);
}

.c-filter-btn.is-active {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-copper));
  border-color: var(--clr-gold);
  color: #0d0c10;
}

/* ── Events Grid ── */

.s-events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .s-events__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .s-events__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.s-events__note {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.s-events__note p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin: 0;
}

/* ── Event Card ── */

.c-event-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  align-items: flex-start;
}

.c-event-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-card-hover);
}

.c-event-card.u-hidden {
  display: none;
}

.c-event-card__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 64px;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
}

.c-event-card__day {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.c-event-card__month {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-event-card__body {
  flex: 1;
  min-width: 0;
}

.c-event-card__tag {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clr-amethyst-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.c-event-card h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.c-event-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.c-event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.c-event-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  font-family: var(--ff-heading);
  font-weight: 500;
}

.c-event-card__meta span i {
  color: var(--clr-amethyst);
  font-size: 0.7rem;
}

/* ── Contact ── */

.s-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .s-contact__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.s-contact__info h2 {
  margin-bottom: var(--space-lg);
}

.s-contact__quote {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  border-left: 3px solid var(--clr-gold);
  background: var(--clr-gold-dim);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.s-contact__quote blockquote p {
  font-size: var(--fs-md);
  color: var(--clr-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.s-contact__quote cite {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s-contact__form-wrap h2 {
  margin-bottom: var(--space-lg);
}

/* ── Contact Item ── */

.c-contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--clr-border);
}

.c-contact-item:last-of-type {
  border-bottom: none;
}

.c-contact-item i {
  color: var(--clr-gold);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.c-contact-item h4 {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.c-contact-item p {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  margin: 0;
  line-height: 1.6;
}

/* ── Contact Form ── */

.c-contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.c-contact-form h2 {
  margin-bottom: var(--space-lg);
}

.c-contact-form__field {
  margin-bottom: var(--space-md);
}

.c-contact-form__field label {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.c-contact-form__field input,
.c-contact-form__field textarea {
  width: 100%;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border-2);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  resize: vertical;
}

.c-contact-form__field input::placeholder,
.c-contact-form__field textarea::placeholder {
  color: var(--clr-text-faint);
}

.c-contact-form__field input:focus,
.c-contact-form__field textarea:focus {
  border-color: var(--clr-amethyst);
  box-shadow: 0 0 0 3px rgba(155,114,207,0.12);
}

.c-contact-form__field textarea {
  min-height: 130px;
}

.c-contact-form__privacy {
  margin-bottom: var(--space-md);
}

/* ── Checkbox ── */

.c-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.c-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.c-checkbox__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--clr-border-2);
  border-radius: 4px;
  background: var(--clr-bg-2);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.c-checkbox__mark::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #0d0c10;
  border-bottom: 2px solid #0d0c10;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--transition-fast);
  margin-top: -2px;
}

.c-checkbox input:checked + .c-checkbox__mark {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.c-checkbox input:checked + .c-checkbox__mark::after {
  transform: rotate(-45deg) scale(1);
}

.c-checkbox span:last-child {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.c-checkbox span:last-child a {
  color: var(--clr-gold);
}

.c-checkbox span:last-child a:hover {
  color: var(--clr-gold-light);
}

/* ── Map ── */

.s-map--dark {
  background: var(--clr-bg-2);
}

.s-map h2 {
  margin-bottom: var(--space-lg);
}

.s-map__iframe {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.s-map__iframe iframe {
  display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.4) brightness(0.85);
}

/* ── Thanks ── */

.s-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 300px);
  padding: var(--space-2xl) 0;
}

.s-thanks__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.s-thanks__icon {
  font-size: 3.5rem;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}

.s-thanks h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.s-thanks p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.s-thanks__countdown {
  padding: var(--space-sm) var(--space-md);
  background: var(--clr-gold-dim);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  color: var(--clr-gold);
}

.s-thanks__countdown strong {
  font-size: var(--fs-lg);
}

/* ── Legal ── */

.s-legal h1 {
  margin-bottom: 0.5rem;
}

.s-legal__date {
  color: var(--clr-text-faint);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xl);
  font-family: var(--ff-heading);
  font-weight: 500;
}

.s-legal__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--clr-border);
}

.s-legal__section:last-child {
  border-bottom: none;
}

.s-legal__section h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  color: var(--clr-gold);
}

.s-legal__section h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  color: var(--clr-amethyst-light);
}

.s-legal__section p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.s-legal__section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-sm);
}

.s-legal__section ul li {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.s-legal__section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: 700;
}

.s-legal__section a {
  color: var(--clr-amethyst-light);
}

.s-legal__section a:hover {
  color: var(--clr-gold);
}

.s-legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: var(--fs-sm);
}

.s-legal__table th {
  background: var(--clr-surface-2);
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--clr-border-2);
}

.s-legal__table td {
  padding: 0.75rem 1rem;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
}

.s-legal__table tr:last-child td {
  border-bottom: none;
}

.s-legal__table tr:hover td {
  background: var(--clr-surface);
}

/* ── Footer ── */

.c-footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: auto;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .c-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .c-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.c-footer__brand img {
  margin-bottom: var(--space-sm);
}

.c-footer__brand p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.c-footer__brand address {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.c-footer__brand address a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.c-footer__brand address a:hover {
  color: var(--clr-gold);
}

.c-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-footer__nav h5 {
  color: var(--clr-gold);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.c-footer__nav a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition-base), padding-left var(--transition-base);
  padding-left: 0;
}

.c-footer__nav a:hover {
  color: var(--clr-text);
  padding-left: 4px;
}

.c-footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (min-width: 600px) {
  .c-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.c-footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  margin: 0;
}

/* ── Cookie Consent ── */

.c-cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 100%;
  max-width: 360px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.5),
    0 16px 48px rgba(0,0,0,0.4),
    0 0 0 1px rgba(201,168,76,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.c-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.c-cookie-consent__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-cookie-consent__title i {
  color: var(--clr-gold);
}

.c-cookie-consent__text {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.c-cookie-consent__text a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-cookie-consent__btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-cookie-consent__btn-accept {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-copper));
  color: #0d0c10;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.c-cookie-consent__btn-accept:hover {
  box-shadow: var(--shadow-glow-gold);
  transform: translateY(-1px);
}

.c-cookie-consent__btn-necessary {
  background: var(--clr-bg-2);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.c-cookie-consent__btn-necessary:hover {
  border-color: var(--clr-amethyst);
  color: var(--clr-amethyst-light);
}

.c-cookie-consent__btn-customize {
  background: none;
  border: none;
  color: var(--clr-text-faint);
  font-size: var(--fs-xs);
  font-family: var(--ff-heading);
  font-weight: 500;
  cursor: pointer;
  padding: 0.4rem 0;
  text-align: center;
  transition: color var(--transition-base);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-cookie-consent__btn-customize:hover {
  color: var(--clr-amethyst-light);
}

.c-cookie-consent__customize-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.c-cookie-consent__customize-panel.is-open {
  max-height: 200px;
}

.c-cookie-consent__customize-inner {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
  margin-top: var(--space-sm);
}

.c-cookie-consent__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.c-cookie-consent__toggle-row span {
  font-family: var(--ff-heading);
  font-weight: 500;
}

.c-cookie-consent__toggle {
  position: relative;
  width: 36px;
  height: 20px;
}

.c-cookie-consent__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.c-cookie-consent__toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border-2);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.c-cookie-consent__toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 2px;
  top: 2px;
  background: var(--clr-text-faint);
  border-radius: 50%;
  transition: transform var(--transition-base), background var(--transition-base);
}

.c-cookie-consent__toggle input:checked + .c-cookie-consent__toggle-slider {
  background: var(--clr-gold-dim);
  border-color: var(--clr-gold);
}

.c-cookie-consent__toggle input:checked + .c-cookie-consent__toggle-slider::before {
  transform: translateX(16px);
  background: var(--clr-gold);
}

.c-cookie-consent__toggle--disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 480px) {
  .c-cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}