:root {
  --bg: #fffaf5;
  --paper: #ffffff;
  --text: #1f0d26;
  --muted: #78636e;
  --border: #f1dcdc;
  --accent: #ff7d79;
  --accent-soft: #ffe7d9;
  --accent-alt: #ffd86c;
  --chip: #fff3eb;
  --chipText: #533040;
  --shadow-sm: 0 8px 26px rgba(31, 13, 38, 0.06);
  --shadow-lg: 0 30px 60px rgba(31, 13, 38, 0.08);
  color-scheme: light;
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 600;
}

a {
  color: inherit;
}

a:not(.btn) {
  color: var(--accent);
  text-decoration-color: color-mix(in oklab, var(--accent) 70%, transparent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a:not(.btn):hover {
  color: color-mix(in oklab, var(--accent) 45%, var(--text));
  text-decoration-color: currentColor;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(241, 220, 220, 0.8);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

.nav a.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  opacity: 0.8;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 60px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(0);
}

.hero::before {
  width: 420px;
  height: 420px;
  left: -160px;
  top: -140px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 221, 210, 0.85), rgba(255, 221, 210, 0));
}

.hero::after {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -80px;
  background: radial-gradient(circle at 60% 60%, rgba(221, 235, 255, 0.8), rgba(221, 235, 255, 0));
}

.page-intro {
  position: relative;
  padding: 90px 0 40px;
}

.page-intro h1 {
  margin: 0 0 16px 0;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.5px;
}

.page-intro .sub {
  max-width: 640px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 72px 0;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.hero-intro {
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--muted);
  opacity: 0.35;
}

.hero-intro p {
  margin: 0;
  font-size: 18px;
  color: color-mix(in oklab, var(--text) 82%, white 18%);
  max-width: 520px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid rgba(31, 13, 38, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.link-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-art {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 12px 12px -18px 12px;
  border-radius: 24px;
  background: rgba(255, 125, 121, 0.12);
  filter: blur(24px);
  z-index: -1;
}

.hero-art img {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: auto;
}

.blobs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 300% 300%;
  mix-blend-mode: multiply;
  will-change: transform;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease, opacity 0.6s ease;
  filter: saturate(110%);
}

.blob--active {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .blobs {
    display: none;
  }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.6px;
}

.muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(31, 13, 38, 0.08);
  background: var(--accent);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(255, 125, 121, 0.35);
  outline-offset: 2px;
}

.card {
  overflow: hidden;
  border: 1px solid rgba(31, 13, 38, 0.04);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  padding: 28px;
}

.ratio {
  display: block;
  width: 100%;
}

.ratio > img,
.ratio > .ph {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: linear-gradient(135deg, #eef2ff, #f0f9ff);
}

/* Section */
section {
  position: relative;
  z-index: 0;
  padding: 56px 0;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.85) 100%);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

section:nth-of-type(even)::before {
  background: linear-gradient(180deg, rgba(255, 247, 240, 0.85) 0%, rgba(255, 255, 255, 0) 30%, rgba(244, 249, 255, 0.8) 100%);
}

h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
}

.sub {
  font-size: 15px;
  color: color-mix(in oklab, var(--muted) 85%, black 5%);
}

/* Portfolio */
.item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--chipText);
  border: 1px solid rgba(255, 170, 214, 0.6);
  box-shadow: 0 4px 12px rgba(255, 122, 199, 0.1);
}

.filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.filter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: inherit;
  box-shadow: inset 0 2px 6px rgba(255, 122, 199, 0.08);
}

.filter input:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--accent) 55%, white 30%);
  box-shadow: 0 0 0 3px rgba(255, 122, 199, 0.25);
}

.home-links {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .home-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.home-card__media {
  margin: 0;
  line-height: 0;
}

.home-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.home-card__body {
  padding: 26px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.home-card__tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: color-mix(in oklab, var(--text) 80%, var(--accent) 20%);
  padding: 6px 12px;
  border-radius: 999px;
}

.home-card__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.home-card__text {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  flex: 1;
}

.home-card__link {
  font-weight: 600;
  color: var(--text);
}

/* Shop */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

.shop-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(31, 13, 38, 0.05);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.shop-card__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.shop-card__copy {
  display: grid;
  gap: 6px;
}

.shop-card__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.25px;
}

.shop-card__blurb {
  margin: 0;
  font-size: 14px;
}

.shop-card__arrow {
  font-size: 22px;
  color: var(--accent);
  align-self: center;
}


.product-carousel {
  margin-top: 28px;
}

.product-carousel__status {
  font-size: 14px;
  margin: 0;
}

.product-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(31, 13, 38, 0.06);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 125, 121, 0.08));
}

.product-carousel__scroller {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.product-carousel__scroller::-webkit-scrollbar {
  display: none;
}

.product-carousel__track {
  display: flex;
  gap: 18px;
  width: 100%;
  padding: 32px;
}

.product-carousel__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.product-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(31, 13, 38, 0.12);
  background: white;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-carousel__nav:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.product-carousel__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-carousel__position {
  font-size: 14px;
  min-width: 56px;
  text-align: center;
}

.product-feed {
  margin-top: 48px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-carousel__track .product-card {
  flex: 0 0 clamp(240px, 60vw, 320px);
  scroll-snap-align: start;
}

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

.product-card__thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 125, 121, 0.16), rgba(187, 221, 255, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card__thumb--empty {
  border: 1px dashed rgba(31, 13, 38, 0.12);
}

.product-card__empty {
  font-size: 13px;
  text-align: center;
}

.product-card__body {
  display: grid;
  gap: 8px;
}

.product-card__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.product-card__meta {
  margin: 0;
  font-size: 14px;
  color: color-mix(in oklab, var(--text) 65%, white 35%);
}

.product-card__arrow {
  font-size: 20px;
  color: var(--accent);
  justify-self: end;
}

.product-carousel__cta {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.product-carousel__cta:hover {
  text-decoration: underline;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

/* Footer */
footer {
  border-top: none;
  padding: 36px 0 28px;
  font-size: 13px;
  color: color-mix(in oklab, var(--muted) 70%, black 10%);
}

/* Masonry layout */
.masonry {
  column-count: 1;
  column-gap: 16px;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry {
    column-count: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
}

.masonry-item .card {
  display: block;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.masonry-item .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(31, 13, 38, 0.12);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}

.tab {
  padding: 10px 18px;
  border: 1px solid rgba(31, 13, 38, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tab:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 13, 38, 0.16);
  box-shadow: var(--shadow-sm);
}

.tab[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* Jiggle */
.jiggle {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
}

.jiggle:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 122, 199, 0.22);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-card {
  padding: 28px;
  display: grid;
  gap: 18px;
  background: var(--paper);
  border: 1px solid rgba(31, 13, 38, 0.04);
}

.contact-form {
  position: relative;
}

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

.contact-form .contact-hp {
  display: none !important;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  resize: vertical;
  box-shadow: inset 0 2px 6px rgba(255, 122, 199, 0.08);
}

.contact-form textarea {
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--accent) 60%, var(--border));
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}

.contact-status {
  font-size: 14px;
  color: var(--muted);
  min-height: 18px;
}

.contact-status[data-status="success"] {
  color: #047857;
}

.contact-status[data-status="error"] {
  color: #dc2626;
}
.hero-summary {
  max-width: 540px;
}

.hero-socials {
  margin-top: 12px;
}

.hero-socials .btn {
  background: var(--paper);
  color: var(--text);
  border: 1px solid rgba(31, 13, 38, 0.08);
  box-shadow: none;
  padding: 10px 16px;
}

.hero-socials .btn:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.hero-socials .btn:focus-visible {
  outline: 2px solid rgba(255, 125, 121, 0.3);
}
.hero-kicker {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
