:root {
  --violet-950: #23056d;
  --violet-800: #351187;
  --violet-650: #4f30a3;
  --violet-500: #6851b0;
  --violet-200: #c7b6e3;
  --violet-100: #eee8f8;
  --violet-050: #f8f6fc;
  --olive-700: #52622e;
  --olive-600: #687b3a;
  --olive-100: #eef2e5;
  --ink: #211d2c;
  --muted: #665f70;
  --line: #ddd7e7;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(35, 5, 109, 0.08);
  --shadow-md: 0 24px 60px rgba(35, 5, 109, 0.14);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --content: 74rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--violet-650);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--violet-950);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #9274d0;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--violet-950);
  color: var(--white);
  transform: translateY(-200%);
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

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

.narrow {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(35, 5, 109, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(35, 5, 109, 0.04);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--violet-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--violet-950);
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-kicker {
  margin-top: 0.3rem;
  color: var(--olive-600);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  color: #332b40;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
}

.nav-link:hover {
  background: var(--violet-100);
  color: var(--violet-950);
}

.nav-link[aria-current="page"] {
  background: var(--violet-950);
  color: var(--white);
}

.nav-link.blog-link {
  color: var(--violet-950);
  box-shadow: inset 0 0 0 1px var(--violet-200);
}

.nav-link.blog-link:hover,
.nav-link.blog-link[aria-current="page"] {
  background: var(--violet-650);
  color: var(--white);
  box-shadow: none;
}

.nav-link.language-link {
  color: var(--olive-700);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0.6rem 0.78rem;
  border: 1px solid var(--violet-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--violet-950);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.nav-toggle-lines {
  display: inline-grid;
  gap: 0.22rem;
  margin-right: 0.45rem;
  vertical-align: 0.08em;
}

.nav-toggle-lines span {
  width: 1rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

main {
  min-height: 56vh;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 15%, rgba(199, 182, 227, 0.55), transparent 28rem),
    linear-gradient(118deg, #ffffff 0%, #fbf9fe 58%, #f2eef9 100%);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.42rem;
  background: linear-gradient(var(--violet-950), var(--violet-500), var(--olive-600));
  content: "";
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--olive-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--violet-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 39rem;
  margin: 0 0 1.65rem;
  color: #50485b;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--violet-950);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(35, 5, 109, 0.22);
}

.button-primary:hover {
  background: var(--violet-650);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(35, 5, 109, 0.28);
}

.button-secondary {
  border-color: var(--violet-200);
  background: var(--white);
  color: var(--violet-950);
}

.button-secondary:hover {
  border-color: var(--violet-500);
  background: var(--violet-100);
  color: var(--violet-950);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 11rem 11rem;
  gap: 0.8rem;
  padding: 0.7rem;
  border: 1px solid rgba(35, 5, 109, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 0.9rem;
  object-fit: cover;
}

.hero-gallery img:first-child {
  grid-row: 1 / 3;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.25rem);
}

.section-soft {
  border-block: 1px solid var(--line);
  background: var(--violet-050);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.025em;
}

.section-heading p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
}

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

.shop-card,
.theme-card,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.shop-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  padding: 1.55rem;
  color: inherit;
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.shop-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.35rem;
  background: var(--violet-650);
  content: "";
}

.shop-card:nth-child(2)::before {
  background: var(--olive-600);
}

.shop-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--olive-600), var(--violet-500));
}

.shop-card:hover {
  border-color: var(--violet-200);
  color: inherit;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.shop-mark {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--violet-100);
  color: var(--violet-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.shop-card:nth-child(2) .shop-mark {
  background: var(--olive-100);
  color: var(--olive-700);
}

.shop-card h3,
.theme-card h3,
.info-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.shop-card p,
.theme-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.card-action {
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--violet-650);
  font-weight: 750;
}

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

.theme-card {
  min-height: 11rem;
  padding: 1.4rem;
  border-top: 4px solid var(--violet-200);
}

.theme-card:nth-child(even) {
  border-top-color: #a9b87b;
}

.blog-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--violet-950);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.blog-band::after {
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  width: 19rem;
  height: 19rem;
  border: 3rem solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.blog-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4rem);
}

.blog-band h2 {
  max-width: 20ch;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
}

.blog-band p {
  max-width: 44rem;
  margin: 0;
}

.blog-band .button {
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--violet-950);
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 20%, rgba(199, 182, 227, 0.52), transparent 25rem),
    var(--violet-050);
}

.page-hero-inner {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.page-hero p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.collection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.collection-list a {
  display: block;
  padding: 0.58rem 0.82rem;
  border: 1px solid var(--violet-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--violet-950);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.collection-list a:hover {
  border-color: var(--violet-650);
  background: var(--violet-100);
}

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

.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-card a {
  display: block;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card a:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: #4f4759;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-copy p:first-of-type {
  color: #4f4759;
  font-size: 1.15rem;
}

.portrait-card {
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
}

.portrait-card img {
  width: 100%;
  max-height: 25rem;
  border-radius: 1rem;
  object-fit: cover;
}

.info-card {
  padding: 1.5rem;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--violet-950);
  font-weight: 700;
  text-decoration: none;
}

.contact-links a:hover {
  border-color: var(--violet-200);
  background: var(--violet-050);
}

.legal-shell {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.legal-content {
  overflow-wrap: anywhere;
}

.legal-content h1,
.legal-content h4:first-child {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.legal-content h3,
.legal-content h4 {
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
}

.legal-content td {
  padding: 0.25rem 0.75rem 0.25rem 0;
  vertical-align: top;
}

.legal-content ul {
  padding-left: 1.3rem !important;
  list-style: disc !important;
}

.redirect-shell {
  display: grid;
  min-height: 58vh;
  place-items: center;
  padding-block: 4rem;
}

.redirect-card {
  max-width: 38rem;
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.redirect-card h1 {
  max-width: none;
  font-size: clamp(2rem, 5vw, 3rem);
}

.site-footer {
  padding-block: 3rem 2rem;
  background: #1d0754;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.footer-brand span {
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

@media (max-width: 68rem) {
  .header-inner {
    gap: 0.6rem;
  }

  .brand-copy {
    display: none;
  }

  .nav-link {
    padding-inline: 0.58rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 54rem) {
  .site-header {
    position: relative;
  }

  .brand-copy {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    width: min(100%, var(--content));
    display: grid;
    margin-inline: auto;
  }

  .nav-link {
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

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

  .hero-copy {
    max-width: 43rem;
  }

  .hero-gallery {
    max-width: 42rem;
  }

  .card-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-band-inner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    max-width: 20rem;
  }
}

@media (max-width: 38rem) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .brand img {
    width: 2.85rem;
    height: 2.85rem;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-kicker {
    font-size: 0.62rem;
  }

  .nav-toggle {
    padding: 0.55rem 0.65rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-inner {
    padding-block: 3rem;
  }

  .hero-gallery {
    grid-template-rows: 8.5rem 8.5rem;
    gap: 0.5rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 0.9rem;
  }

  .card-grid,
  .theme-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .shop-card {
    min-height: 15rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-content table,
  .legal-content tbody,
  .legal-content tr,
  .legal-content td {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
