/* ============================================================
   NOT Design — Simple but NOT.
   Design system v2
   ============================================================ */

:root {
  --coral: #ea9195;
  --coral-dark: #d97a7e;
  --coral-deep: #c4666b;
  --coral-light: #f5c4c6;
  --coral-tint: #fbeeee;
  --slate: #566678;
  --slate-dark: #3f4d5c;
  --slate-deep: #2e3844;
  --ink: #27242b;
  --muted: #6f6a72;
  --paper: #faf8f5;
  --white: #ffffff;
  --line: #ebe4de;
  --shadow-sm: 0 2px 8px rgba(43, 40, 48, 0.05), 0 8px 24px rgba(43, 40, 48, 0.05);
  --shadow: 0 4px 14px rgba(43, 40, 48, 0.06), 0 18px 50px rgba(43, 40, 48, 0.09);
  --shadow-lg: 0 8px 22px rgba(43, 40, 48, 0.08), 0 32px 80px rgba(43, 40, 48, 0.14);
  --shadow-coral: 0 10px 30px rgba(217, 122, 126, 0.4);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --max: 1140px;
  --font: 'Poppins', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection {
  background: var(--coral-light);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-deep);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
}

.hero--slate .eyebrow { color: var(--coral-light); }
.hero--slate .eyebrow::before { background: var(--coral-light); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: 0.65rem 0;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-right { justify-content: flex-end; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-link:hover {
  background: var(--coral-tint);
  color: var(--coral-deep);
}

.nav-link img {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover img { transform: rotate(-8deg) scale(1.12); }

.nav-link--etsy {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  padding-inline: 1.15rem;
  box-shadow: 0 4px 14px rgba(217, 122, 126, 0.35);
}

.nav-link--etsy:hover {
  background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral-deep) 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 122, 126, 0.45);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.lang-switch:hover {
  color: var(--coral-deep);
  border-color: var(--coral-light);
  box-shadow: var(--shadow-sm);
}

.logo {
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease;
}

.logo:hover { transform: scale(1.03); color: var(--ink); }

.logo-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.logo-tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-top: 0.25rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4.5rem, 11vw, 7.5rem) 0 clamp(3.5rem, 9vw, 6rem);
}

.hero--home {
  background:
    radial-gradient(ellipse 55% 45% at 88% 8%, rgba(234, 145, 149, 0.22), transparent),
    radial-gradient(ellipse 45% 40% at 5% 92%, rgba(86, 102, 120, 0.14), transparent),
    linear-gradient(180deg, #fdfbf9 0%, var(--paper) 100%);
}

.hero--slate {
  background:
    radial-gradient(ellipse 60% 55% at 85% 10%, rgba(234, 145, 149, 0.16), transparent),
    radial-gradient(ellipse 40% 45% at 8% 90%, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(135deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: var(--white);
}

.hero--slate a { color: var(--coral-light); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.hero-copy .lead {
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 33rem;
  margin-bottom: 2rem;
}

.hero--slate .lead { color: rgba(255, 255, 255, 0.85); }

.hero-visual { position: relative; }

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% -5% -6% 6%;
  background: linear-gradient(135deg, var(--coral-light), var(--coral-tint));
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  z-index: -1;
  opacity: 0.8;
}

.hero--slate .hero-visual::before {
  background: linear-gradient(135deg, rgba(234, 145, 149, 0.35), rgba(255, 255, 255, 0.08));
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 120px var(--radius-lg) 120px var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-visual--art::before { opacity: 0.55; }

.hero-visual--art img {
  aspect-ratio: 4/5;
  object-fit: contain;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg) 120px var(--radius-lg) 120px;
}

.hero-blob {
  position: absolute;
  z-index: 0;
  width: clamp(72px, 10vw, 130px);
  opacity: 0.5;
  pointer-events: none;
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.hero-blob--1 { top: 7%; right: 5%; }
.hero-blob--2 { bottom: 10%; left: 3.5%; width: 88px; animation-delay: -7s; }

@keyframes blob-drift {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-16px) rotate(8deg); }
}

/* ---------- USP strip ---------- */
.usp-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
}

.usp-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-dark);
  text-align: center;
}

.usp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-dark) 0%, var(--coral-deep) 100%);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(217, 122, 126, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.section-head p { color: var(--muted); margin: 0; font-size: 1.02rem; }

/* ---------- Nav cards (home) ---------- */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.4rem 1.75rem 2.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-card:hover {
  transform: translateY(-6px);
  border-color: var(--coral-light);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.nav-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 13px;
  box-sizing: content-box;
  background: var(--coral-tint);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s;
}

.nav-card:hover img {
  transform: rotate(-6deg) scale(1.08);
  background: var(--coral-light);
}

.nav-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

.nav-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---------- Category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--coral-light);
}

.category-card > img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover > img { transform: scale(1.045); }

.category-card-body {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
}

.category-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.category-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.category-card a {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  background-position: 0 100%;
  transition: background-size 0.25s ease, color 0.2s;
  padding-bottom: 2px;
}

.category-card a:hover { background-size: 100% 1.5px; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.25rem, 4.5vw, 3rem);
  background:
    radial-gradient(ellipse 50% 80% at 92% 0%, rgba(234, 145, 149, 0.14), transparent),
    radial-gradient(ellipse 40% 70% at 2% 100%, rgba(86, 102, 120, 0.07), transparent),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.page-hero .subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
  margin: 1rem 0 0;
}

/* ---------- Content ---------- */
.content {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.prose { max-width: 68ch; }

.prose h2 {
  position: relative;
  margin: 2.5rem 0 1rem;
  padding-left: 1.1rem;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
}

.prose h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--coral), var(--coral-light));
}

.prose h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.2rem;
}

.prose p { margin: 0 0 1.1rem; }

.prose ul { padding-left: 1.2rem; margin: 0 0 1.1rem; }

/* ---------- Sidebar ---------- */
.sidebar-card {
  position: sticky;
  top: 104px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.sidebar-card h3 {
  margin: 0.2rem 0 0.75rem;
  font-size: 1.15rem;
}

.sidebar-card p {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.sidebar-card .btn { width: 100%; }
.sidebar-card .btn + .btn { margin-top: 0.75rem; }

/* ---------- Feature images ---------- */
.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.feature-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.feature-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.feature-gallery__main {
  grid-row: span 2;
  min-height: 280px;
}

.feature-gallery__stack {
  display: grid;
  gap: 0.85rem;
}

/* ---------- Art gallery ---------- */
.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.art-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.art-item:hover {
  transform: translateY(-6px);
  border-color: var(--coral-light);
  box-shadow: var(--shadow);
}

.art-item__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f0ec 0%, var(--paper) 100%);
}

.art-item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.art-item:hover .art-item__media img { transform: scale(1.06); }

.art-item figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.85rem 1.05rem;
  background: var(--white);
}

.art-item figcaption::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  flex-shrink: 0;
}

.art-item h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

/* ---------- Etsy band ---------- */
.etsy-band {
  position: relative;
  overflow: hidden;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: clamp(3.5rem, 8vw, 6rem) auto;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 55%, var(--coral-deep) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-coral);
}

.etsy-band::before,
.etsy-band::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.etsy-band::before {
  width: 260px;
  height: 260px;
  top: -110px;
  right: -70px;
}

.etsy-band::after {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: -50px;
}

.etsy-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
}

.etsy-band p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  opacity: 0.94;
}

.etsy-band .btn-secondary {
  background: var(--white);
  border-color: var(--white);
  color: var(--coral-deep);
}

.etsy-band .btn-secondary:hover {
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(234, 145, 149, 0.18);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(ellipse 60% 90% at 95% 0%, rgba(234, 145, 149, 0.1), transparent),
    var(--slate-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(2.75rem, 6vw, 4rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-mark {
  font-size: 1.5rem;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin: 0.85rem 0 0;
  max-width: 24rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral-light);
}

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

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--coral-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--coral-light); }

.social-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-row a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.social-row a:hover { color: var(--coral-light); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    gap: 0.5rem;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  /* Mobile menu: navs flow into rows below the logo, no absolute hacks */
  .nav-left, .nav-right { display: none; }

  .nav-left.open, .nav-right.open {
    display: flex;
    position: static;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 0.75rem;
  }

  .nav-left.open {
    grid-row: 2;
    margin-top: 0.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: 0;
  }

  .nav-right.open {
    grid-row: 3;
    margin-bottom: 0.5rem;
    border-radius: 0 0 var(--radius) var(--radius);
    padding-top: 0;
    box-shadow: var(--shadow);
  }

  .nav-link, .lang-switch { justify-content: flex-start; }

  .nav-link--etsy { justify-content: center; margin-top: 0.35rem; }

  .hero-grid,
  .content-grid,
  .nav-cards,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-grid { gap: 2.5rem; }

  .hero-visual img { border-radius: 80px var(--radius) 80px var(--radius); }

  .hero-visual--art img { border-radius: var(--radius) 80px var(--radius) 80px; }

  .sidebar-card { position: static; }

  .usp-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .usp { justify-content: flex-start; text-align: left; }

  .hero-blob { width: 56px; opacity: 0.35; }
  .hero-blob--1 { top: 2%; right: 2%; }
  .hero-blob--2 { display: none; }
}

@media (max-width: 960px) and (min-width: 521px) {
  .art-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

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

  .feature-gallery__main {
    grid-row: auto;
    min-height: 220px;
  }

  .etsy-band { width: calc(100% - 1.5rem); }
}

@media (max-width: 520px) {
  .art-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}
