:root {
  --bg: #fffaf7;
  --bg-elevated: #f3ecff;
  --bg-card: #ffffff;
  --bg-warm: #fff0e8;
  --surface: #f8f4ff;
  --ink: #2a2438;
  --ink-muted: #6d6478;
  --ink-faint: #9a92a8;
  --accent: #e05a7a;
  --accent-2: #9b6fd4;
  --accent-3: #ffb088;
  --accent-soft: rgba(224, 90, 122, 0.1);
  --lavender: #ebe0ff;
  --peach: #ffe8d9;
  --rose: #ffe0ea;
  --mint: #dff8f0;
  --border: rgba(42, 36, 56, 0.08);
  --shadow: 0 12px 40px rgba(155, 111, 212, 0.12);
  --shadow-soft: 0 4px 20px rgba(42, 36, 56, 0.06);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1280px, 92vw); margin-inline: auto; }

/* Soft background blobs */
.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.blob--1 {
  width: 420px;
  height: 420px;
  background: var(--lavender);
  top: -80px;
  right: -60px;
}

.blob--2 {
  width: 360px;
  height: 360px;
  background: var(--peach);
  bottom: 10%;
  left: -80px;
}

.blob--3 {
  width: 280px;
  height: 280px;
  background: var(--rose);
  top: 45%;
  right: 15%;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.25s;
}

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

.nav__cta {
  color: white !important;
  background: var(--accent);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(224, 90, 122, 0.3);
  transition: transform 0.25s, background 0.25s !important;
}

.nav__cta:hover {
  background: #c94d6a !important;
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--ease) 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero__title span { color: var(--accent); }

.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.85em;
}

.hero__desc {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--lavender);
  border: 3px solid white;
  box-shadow: var(--shadow);
  position: relative;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(155, 111, 212, 0.25);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.hero__slide.active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.hero__thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.hero__thumb:hover { opacity: 0.85; transform: translateY(-2px) scale(1.05); }

.hero__thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

.hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--lavender), var(--peach), var(--lavender));
}

.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.marquee__track span:nth-child(even) { color: var(--accent); opacity: 0.7; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 20px rgba(224, 90, 122, 0.35);
}

.btn--primary:hover {
  background: #c94d6a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 90, 122, 0.4);
}

.btn--soft {
  background: white;
  color: var(--ink);
  border: 2px solid var(--border);
}

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

.btn--dark {
  background: var(--surface);
  border: 2px solid var(--border);
  margin-top: 1.5rem;
}

.btn--dark:hover { border-color: var(--accent); color: var(--accent); }

.btn--large { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--light {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 20px rgba(224, 90, 122, 0.35);
}

.btn--light:hover {
  background: #c94d6a;
  transform: translateY(-2px);
}

.btn--outline {
  background: white;
  color: var(--ink);
  border: 2px solid var(--border);
}

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

/* ── Section headers ── */
.section-head {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.section-head__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.5rem;
  white-space: nowrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--ink-muted);
  max-width: 520px;
}

main { position: relative; z-index: 1; }

/* ── Experience ── */
.experience {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--bg);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}

.exp-card {
  padding: 1.5rem 1.5rem 1.65rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.exp-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--accent-2));
}

.exp-card--lavender { --card-accent: #9b6fd4; background: linear-gradient(180deg, #faf7ff 0%, white 100%); }
.exp-card--peach { --card-accent: #ffb088; background: linear-gradient(180deg, #fff8f3 0%, white 100%); }
.exp-card--rose { --card-accent: #e05a7a; background: linear-gradient(180deg, #fff5f8 0%, white 100%); }
.exp-card--mint { --card-accent: #5ec4a8; background: linear-gradient(180deg, #f2fbf8 0%, white 100%); }

.exp-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.exp-card__emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.exp-card time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent-2));
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.4rem 0 0.35rem;
}

.exp-card p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.55; }

/* ── Commissions ── */
.commissions {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--bg-warm);
  border-block: 1px solid var(--border);
}

.commissions__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.pricing__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing__note {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing__category { margin-bottom: 2rem; }
.pricing__category:last-of-type { margin-bottom: 1.5rem; }

.pricing__category-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed rgba(155, 111, 212, 0.2);
}

.pricing__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--accent-2);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 0.35rem;
}

.pricing__price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-top: 0.1rem;
}

.pricing__addons {
  padding-top: 0.5rem;
  border-top: 2px dashed rgba(155, 111, 212, 0.15);
}

.pricing__addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.pricing__addon {
  padding: 0.85rem 1rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
}

.pricing__addon strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pricing__addon span {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.pricing__policy {
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 1.55;
  font-style: italic;
}

.pricing__list { display: grid; gap: 0.75rem; }

.pricing__item {
  padding: 1.15rem 1.25rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pricing__item:hover {
  border-color: rgba(224, 90, 122, 0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.pricing__item--featured {
  border-color: rgba(155, 111, 212, 0.35);
  background: linear-gradient(135deg, white 0%, var(--lavender) 100%);
}

.pricing__item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.pricing__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing__price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.pricing__desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.commission-contact__card {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  padding: 2rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.commission-contact__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.commission-contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.commission-contact__card > p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.commission-contact__email {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--rose);
  border: 2px solid rgba(224, 90, 122, 0.15);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease);
}

.commission-contact__email:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.commission-contact__email svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.commission-contact__email strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  word-break: break-all;
  color: var(--ink);
}

.commission-contact__email small {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 0.15rem;
}

.commission-contact__details {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.commission-contact__details a,
.commission-contact__details span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 600;
}

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

.commission-contact__details svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-2);
}

.commission-contact__actions {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.commission-contact__steps {
  padding-top: 1.25rem;
  border-top: 2px dashed var(--border);
  display: grid;
  gap: 0.65rem;
}

.commission-contact__steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.commission-contact__steps span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-2);
  flex-shrink: 0;
}

/* ── Gallery ── */
.gallery-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.gallery-section--alt { background: var(--bg-elevated); }

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-muted);
  border: 2px solid var(--border);
  background: white;
  transition: all 0.25s;
}

.pill:hover { color: var(--accent-2); border-color: var(--accent-2); }

.pill.active {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: white;
}

.gallery-toolbar__count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
}

.masonry {
  columns: 4 240px;
  column-gap: 1rem;
}

.art-card {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.art-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow);
  border-color: rgba(155, 111, 212, 0.3);
}

.art-card.hidden { display: none; }

.art-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.art-card__img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}

.art-card:hover .art-card__img-wrap img { transform: scale(1.05); }

.art-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 36, 56, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.art-card:hover .art-card__overlay { opacity: 1; }

.art-card__overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.art-card__info { padding: 0.85rem 1rem 1rem; }

.art-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.art-card__info p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
}

/* ── About ── */
.about {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid white;
  box-shadow: var(--shadow);
}

.about__frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--lavender), var(--peach));
  border-radius: calc(var(--radius-lg) + 6px);
  z-index: -1;
}

.about__frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.about__frame figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: white;
}

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0.5rem 0 1.25rem;
}

.about__lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-2);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about__content p { color: var(--ink-muted); margin-bottom: 1rem; }

.about__highlights {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.highlight {
  padding: 1rem 1.25rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.highlight:hover {
  border-color: rgba(155, 111, 212, 0.35);
  transform: translateX(4px);
}

.highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.highlight span { font-size: 0.85rem; color: var(--ink-muted); }

.highlight span a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.highlight span a:hover { color: var(--accent-2); }

/* ── Social links ── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.social-links--center {
  justify-content: center;
  margin-top: 2rem;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: white;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-muted);
  transition: all 0.3s var(--ease);
}

.social-links__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-links__item:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
  background: var(--lavender);
  transform: translateY(-2px);
}

/* ── Contact ── */
.contact {
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--lavender) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.contact__inner { position: relative; }

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact p {
  color: var(--ink-muted);
  max-width: 440px;
  margin: 0 auto 2rem;
  font-weight: 600;
}

.contact__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FAQ (SEO) ── */
.faq {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: white;
  border-top: 1px solid var(--border);
}

.faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq__item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq__item[open] {
  border-color: rgba(155, 111, 212, 0.35);
  box-shadow: var(--shadow-soft);
}

.faq__item summary {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-2);
  flex-shrink: 0;
}

.faq__item[open] summary::after { content: "−"; }

.faq__item p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.faq__item a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

/* ── SEO bridge (crawlable commission copy) ── */
.seo-bridge {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, var(--lavender), var(--peach));
  border-block: 1px solid var(--border);
}

.seo-bridge__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.seo-bridge h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.seo-bridge p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.seo-bridge a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-bridge a:hover { color: var(--accent-2); }

/* ── Footer ── */
.footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: white;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__inner a { transition: color 0.25s; }
.footer__inner a:hover { color: var(--accent); }

/* ── Lightbox ── */
.lightbox {
  border: none;
  padding: 0;
  max-width: none;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  color: var(--ink);
}

.lightbox::backdrop { background: rgba(42, 36, 56, 0.4); }

.lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  font-size: 1.5rem;
  line-height: 1;
  z-index: 10;
  transition: all 0.25s;
  color: var(--ink);
}

.lightbox__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  font-size: 1.25rem;
  z-index: 10;
  transition: all 0.25s;
  color: var(--ink);
}

.lightbox__nav:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: white;
}

.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4rem 4.5rem 2rem;
}

.lightbox__figure img {
  max-height: calc(100vh - 160px);
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__figure figcaption {
  text-align: center;
  margin-top: 1.25rem;
}

.lightbox__figure h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.lightbox__figure p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin-inline: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 400px; }
  .masonry { columns: 3 200px; }
  .commissions__layout { grid-template-columns: 1fr; }
  .commission-contact__card { position: static; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .masonry { columns: 2 140px; column-gap: 0.65rem; }
  .art-card { margin-bottom: 0.65rem; }
  .section-head { flex-direction: column; gap: 0.5rem; }
  .lightbox__figure { padding: 3.5rem 1rem 1.5rem; }
  .lightbox__nav { width: 40px; height: 40px; }
}

@media (max-width: 400px) {
  .masonry { columns: 1; }
}
