:root {
  --ink: #12396d;
  --ink-soft: #35679e;
  --blue: #3f7fc4;
  --blue-light: #cfe5f6;
  --blue-pale: #edf6fc;
  --paper: #f8f4e9;
  --yellow: #f2ce67;
  --rose: #a8416d;
  --rose-pale: #f5dce6;
  --line: rgba(18, 57, 109, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 12% 10%, rgba(63, 127, 196, 0.09), transparent 27%), var(--paper);
  color: var(--ink);
  font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; }
a { text-decoration: none; }
button { font: inherit; }
[hidden] { display: none !important; }
main { min-height: 100vh; overflow-x: clip; }
h1, h2, h3, p { margin-top: 0; }
section[id] { scroll-margin-top: 104px; }

.announcement {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.announcement span {
  display: inline-block;
  color: var(--yellow);
  filter: drop-shadow(0 0 5px rgba(242, 206, 103, 0.65));
  animation: sparkle-pop 2.6s ease-in-out infinite;
}
.announcement span:last-child { animation-delay: -1.3s; }

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 233, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(18, 57, 109, 0.07);
}
.brand {
  position: relative;
  display: block;
  width: fit-content;
  line-height: 0;
  transition: transform 180ms ease;
}
.brand:hover { transform: rotate(-2deg) scale(1.03); }
.brand::after,
.footer-brand::after {
  position: absolute;
  color: var(--yellow);
  content: "✦";
  font-size: 15px;
  animation: sparkle-pop 2.7s ease-in-out infinite;
}
.brand::after { top: 8px; right: -11px; }
.brand-logo {
  width: 116px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(38%) saturate(2029%) hue-rotate(177deg) brightness(89%) contrast(93%);
}
nav { display: flex; gap: 34px; font-size: 13px; font-weight: 600; }
nav a { position: relative; }
nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.header-socials {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
}
.social-icon-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 160ms ease;
}
.social-icon-link:hover,
.social-icon-link:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}
.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}
.mobile-menu-toggle,
.mobile-menu-layer { display: none; }

.hero {
  display: grid;
  min-height: 670px;
  grid-template-columns: 0.92fr 1.08fr;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 7vw;
  animation: hero-arrive 750ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.2em; }
h1 {
  margin: 27px 0 30px;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.8vw, 106px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}
h1 em { color: var(--blue); font-weight: 400; }
.hero-copy > p {
  max-width: 480px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 17px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.primary-button:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }

.hero-art {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px), var(--blue-light);
  background-size: 28px 28px;
}
.hero-art::before {
  position: absolute;
  inset: 6%;
  border: 1px dashed rgba(18, 57, 109, 0.32);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
}
.sparkle-field,
.order-sparkles {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}
.sparkle-field i,
.order-sparkles i {
  position: absolute;
  color: white;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-style: normal;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(242, 206, 103, 0.85));
  animation: sparkle-pop 3.2s ease-in-out infinite;
}
.sparkle-field i:nth-child(1) { top: 8%; left: 8%; animation-delay: -0.4s; }
.sparkle-field i:nth-child(2) { top: 31%; left: 49%; color: var(--yellow); font-size: 15px; animation-delay: -2.2s; }
.sparkle-field i:nth-child(3) { top: 52%; right: 8%; font-size: 29px; animation-delay: -1.1s; }
.sparkle-field i:nth-child(4) { right: 38%; bottom: 7%; color: var(--yellow); font-size: 18px; animation-delay: -2.7s; }
.sparkle-field i:nth-child(5) { bottom: 30%; left: 9%; font-size: 17px; animation-delay: -1.7s; }
.sparkle-field i:nth-child(6) { top: 6%; right: 31%; color: var(--yellow); font-size: 12px; animation-delay: -0.8s; }
@keyframes sparkle-pop {
  0%, 28%, 100% { opacity: 0; transform: rotate(-18deg) scale(0.25); }
  43% { opacity: 1; transform: rotate(5deg) scale(1.15); }
  58% { opacity: 0.5; transform: rotate(17deg) scale(0.78); }
}
.hero-crop, .product-image, .modal-image {
  background-image: var(--image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-crop {
  position: absolute;
  border: 10px solid white;
  box-shadow: 0 20px 45px rgba(18, 57, 109, 0.16);
}
.crop-vase {
  top: 8%;
  left: 13%;
  width: min(39vw, 390px);
  aspect-ratio: 1;
  background-position: center;
  transform: rotate(-4deg);
  animation: float-vase 7s ease-in-out infinite;
}
.crop-moon {
  right: 8%;
  bottom: 5%;
  width: min(29vw, 290px);
  aspect-ratio: 1;
  background-position: center;
  transform: rotate(7deg);
  animation: float-moon 8s ease-in-out 500ms infinite;
}
@keyframes float-vase {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(-2.5deg); }
}
@keyframes float-moon {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); }
  50% { transform: translate3d(0, 9px, 0) rotate(5.5deg); }
}
.doodle { position: absolute; z-index: 3; font-family: "Fraunces", Georgia, serif; font-size: 56px; }
.doodle-star { top: 11%; right: 8%; color: var(--yellow); animation: star-twinkle 2.8s ease-in-out infinite; }
.doodle-heart { bottom: 12%; left: 7%; color: var(--ink); font-size: 67px; animation: heart-bob 4s ease-in-out infinite; }
@keyframes star-twinkle {
  0%, 100% { opacity: 0.65; transform: rotate(13deg) scale(0.92); }
  50% { opacity: 1; transform: rotate(22deg) scale(1.08); }
}
@keyframes heart-bob {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-7px) rotate(-8deg); }
}
.hand-note {
  position: absolute;
  z-index: 4;
  top: 17%;
  right: 8%;
  color: var(--ink);
  font-family: "Patrick Hand", "Segoe Print", cursive;
  font-size: 22px;
  line-height: 1.25;
  text-align: center;
  transform: rotate(5deg);
}
.scribble-arrow { position: absolute; z-index: 4; top: 28%; right: 17%; font-family: "Patrick Hand", "Segoe Print", cursive; font-size: 54px; transform: rotate(30deg); }

.manifesto {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: center;
  gap: 40px;
  padding: 74px 7vw;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: white;
}
.manifesto span { color: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: 0.2em; }
.manifesto p { max-width: 840px; margin-bottom: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(26px, 3vw, 45px); line-height: 1.25; }

.catalog {
  position: relative;
  overflow: hidden;
  padding: 110px 5vw 130px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(242, 206, 103, 0.22), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    var(--blue-pale);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}
.catalog::before,
.catalog::after {
  position: absolute;
  z-index: 0;
  color: var(--yellow);
  content: "✦";
  font-family: "Fraunces", Georgia, serif;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(242, 206, 103, 0.7));
  animation: sparkle-pop 3.1s ease-in-out infinite;
}
.catalog::before { top: 72px; right: 3.5vw; font-size: 31px; animation-delay: -0.7s; }
.catalog::after { bottom: 55px; left: 2.4vw; color: var(--rose); font-size: 20px; animation-delay: -2.1s; }
.catalog > * { position: relative; z-index: 1; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.section-heading h2 {
  position: relative;
  width: fit-content;
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(39px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
}
.section-heading h2::after {
  display: block;
  width: 62%;
  height: 7px;
  margin: 7px 0 0 18%;
  border-top: 2px solid var(--rose);
  border-radius: 50%;
  content: "";
  transform: rotate(-1.5deg);
  transition: width 380ms ease;
}
.catalog:hover .section-heading h2::after { width: 78%; }
.section-heading > p { color: var(--ink-soft); font-size: 12px; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.filters button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: 160ms ease;
}
.filters button:hover, .filters button.active { border-color: var(--ink); background: var(--ink); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 22px; }
.product-card {
  --tilt: -0.7deg;
  position: relative;
  min-width: 0;
  padding: 10px 10px 17px;
  border: 1px solid rgba(18, 57, 109, 0.13);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 7px 8px 0 rgba(63, 127, 196, 0.11);
  cursor: pointer;
  text-align: left;
  transform: rotate(var(--tilt));
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}
.product-card:nth-child(2n) { --tilt: 0.65deg; }
.product-card:nth-child(3n) { --tilt: -0.35deg; }
.product-card:hover,
.product-card:focus-visible {
  z-index: 4;
  background: white;
  box-shadow: 12px 17px 30px rgba(18, 57, 109, 0.16);
  transform: translateY(-8px) rotate(0deg);
}
.product-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--blue-light);
  background-position: center;
  box-shadow: 0 0 0 rgba(18, 57, 109, 0);
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 320ms ease;
}
.product-card:hover .product-image,
.product-card:focus-visible .product-image {
  box-shadow: 0 16px 30px rgba(18, 57, 109, 0.14);
  transform: scale(1.012);
}
.product-image::before {
  position: absolute;
  z-index: 1;
  inset: -45%;
  background: linear-gradient(108deg, transparent 42%, rgba(255, 255, 255, 0.62) 50%, transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-72%) rotate(7deg);
}
.product-card:hover .product-image::before,
.product-card:focus-visible .product-image::before {
  animation: product-shine 900ms ease-out;
}
@keyframes product-shine {
  0% { opacity: 0; transform: translateX(-72%) rotate(7deg); }
  22% { opacity: 0.72; }
  100% { opacity: 0; transform: translateX(72%) rotate(7deg); }
}
.product-image::after { position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(18, 57, 109, 0.12); content: ""; pointer-events: none; }
.product-status, .view-label {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.product-status {
  top: 12px;
  left: 12px;
  border-radius: 100px;
  background: var(--rose-pale);
  color: var(--rose);
  white-space: nowrap;
}
.camera-mark {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 12px;
  width: 34px;
  height: 26px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  background: rgba(248, 244, 233, 0.9);
  box-shadow: 3px 3px 0 rgba(18, 57, 109, 0.14);
  opacity: 0.88;
  transform: rotate(-5deg);
  transition: opacity 180ms ease, transform 180ms ease;
}
.camera-mark::before {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}
.camera-mark::after {
  position: absolute;
  top: -5px;
  left: 5px;
  width: 10px;
  height: 5px;
  border: 1.5px solid var(--ink);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: rgba(248, 244, 233, 0.96);
  content: "";
}
.camera-mark i {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
}
.product-card:hover .camera-mark,
.product-card:focus-visible .camera-mark {
  opacity: 1;
  transform: rotate(0deg) scale(1.08);
}
.view-label { background: rgba(248, 244, 233, 0.92); }
.view-label { right: 12px; bottom: 12px; opacity: 0; transform: translateY(5px); transition: 180ms ease; }
.product-card:hover .view-label, .product-card:focus-visible .view-label { opacity: 1; transform: translateY(0); }
.product-info { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 16px 3px 0; }
.product-info strong, .product-info small { display: block; }
.product-info strong { font-family: "Fraunces", Georgia, serif; font-size: 18px; font-weight: 500; }
.product-info small { margin-top: 6px; color: var(--ink-soft); font-size: 10px; }
.studio-note { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--blue-pale); }
.studio-note > div { padding: 70px 5vw; }
.studio-note > div + div { border-left: 1px solid var(--line); }
.note-number { display: inline-grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 10px; font-weight: 800; }
.studio-note h3 { margin: 28px 0 12px; font-family: "Fraunces", Georgia, serif; font-size: 29px; font-weight: 500; }
.studio-note p { max-width: 330px; margin-bottom: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.handmade-order {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  padding: 120px 7vw;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 206, 103, 0.2), transparent 23%),
    linear-gradient(rgba(255,255,255,0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.34) 1px, transparent 1px),
    var(--blue-pale);
  background-size: auto, 28px 28px, 28px 28px, auto;
}
.order-sparkles { z-index: 1; overflow: hidden; }
.order-sparkles i:nth-child(1) { top: 7%; left: 4%; color: var(--yellow); font-size: 28px; animation-delay: -1s; }
.order-sparkles i:nth-child(2) { top: 34%; right: 3%; color: var(--blue); font-size: 22px; animation-delay: -2.4s; }
.order-sparkles i:nth-child(3) { right: 7%; bottom: 10%; color: var(--yellow); font-size: 17px; animation-delay: -0.3s; }
.order-sparkles i:nth-child(4) { bottom: 27%; left: 2%; color: var(--rose); font-size: 20px; animation-delay: -1.8s; }
.handmade-order > :not(.order-sparkles) { position: relative; z-index: 2; }
.order-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}
.order-intro h2 {
  margin: 18px 0 28px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.order-intro h2 em { color: var(--blue); font-weight: 400; }
.order-intro > p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
}
.order-contact { padding: 15px 19px; }
.order-doodle {
  display: block;
  margin: 32px 0 0 8px;
  color: var(--rose);
  font-family: "Patrick Hand", cursive;
  font-size: 38px;
  letter-spacing: 0.12em;
  transform: rotate(-5deg);
}
.order-content {
  border-top: 1px solid var(--ink);
}
.order-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 3px 30px;
  border-bottom: 1px solid var(--line);
}
.order-heading > span { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; }
.order-heading p { max-width: 340px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; text-align: right; }
.order-heading strong { color: var(--rose); }
.order-steps { margin: 0; padding: 0; list-style: none; }
.order-steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 3px;
  border-bottom: 1px solid var(--line);
}
.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}
.order-steps h3 {
  margin: 2px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}
.order-steps p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}
.order-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 25px;
  border: 1px solid var(--line);
  background: rgba(248, 244, 233, 0.72);
}
.order-notes article { padding: 34px 28px 38px; }
.order-notes article + article { border-left: 1px solid var(--line); }
.order-notes article > span {
  color: var(--rose);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.order-notes h3 {
  margin: 18px 0 11px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}
.order-notes p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }

.faq {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9vw;
  padding: 110px 7vw 120px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.faq-heading {
  position: sticky;
  top: 50px;
  align-self: start;
}
.faq-heading h2 {
  margin: 16px 0 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.faq-heading p {
  max-width: 390px;
  color: var(--ink-soft);
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
}
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 3px;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--blue); }
.faq-plus {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}
.faq-list details[open] .faq-plus {
  background: var(--ink);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  animation: faq-open 280ms ease both;
}
.faq-answer p {
  max-width: 660px;
  margin: 0;
  padding: 0 62px 30px 3px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mobile-camera-pop {
  0% { opacity: 0; filter: brightness(1.7) drop-shadow(0 0 10px rgba(242, 206, 103, 0.95)); scale: 0.55; }
  52% { opacity: 1; scale: 1.14; }
  72% { opacity: 0.76; scale: 0.94; }
  100% { opacity: 0.88; filter: brightness(1) drop-shadow(0 0 0 transparent); scale: 1; }
}
@keyframes mobile-underline-draw {
  from { width: 0; opacity: 0.2; }
  to { width: 72%; opacity: 1; }
}

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 40px; padding: 90px 5vw 45px; background: var(--ink); color: white; }
.footer-brand {
  position: relative;
  width: fit-content;
  line-height: 0;
}
.footer-brand::after {
  top: 2px;
  right: -12px;
  font-size: 20px;
  animation-delay: -1.25s;
}
.footer-brand img {
  width: min(210px, 48vw);
  height: 120px;
  object-fit: contain;
  transform: rotate(-3deg);
}
footer p { margin-bottom: 0; font-family: "Fraunces", Georgia, serif; font-size: 16px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 13px; font-size: 11px; }
.footer-links span { color: rgba(255, 255, 255, 0.55); }
.footer-instagram { display: inline-flex; align-items: center; gap: 8px; }
.footer-instagram .social-icon { width: 17px; height: 17px; }

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 35, 67, 0.74);
  backdrop-filter: blur(8px);
}
.product-modal {
  position: relative;
  display: grid;
  width: min(980px, 96vw);
  max-height: calc(100vh - 48px);
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--blue);
}
.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 25px;
}
.modal-image { min-height: 540px; background-position: center; }
.modal-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px 60px; border-left: 1px solid var(--line); }
.modal-copy h2 { margin: 16px 0 10px; font-family: "Fraunces", Georgia, serif; font-size: clamp(38px, 5vw, 64px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.98; }
.modal-price { margin-bottom: 32px; color: var(--rose); font-size: 16px; letter-spacing: 0.12em; }
.modal-copy > p { color: var(--ink-soft); font-family: "Fraunces", Georgia, serif; line-height: 1.65; }
.modal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 15px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; }
.modal-facts small { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.modal-footnote { margin: 22px 0 0; font-family: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif !important; font-size: 10px; }

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item.is-visible.product-card {
  transform: rotate(var(--tilt));
}
.reveal-item.is-visible.product-card:hover {
  transform: translateY(-8px) rotate(0deg);
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .header-socials { display: none; }
  .mobile-menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu-toggle span { width: 17px; height: 1px; background: var(--ink); }
  .mobile-menu-layer {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-menu-layer.is-open { pointer-events: auto; visibility: visible; }
  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(10, 35, 67, 0.56);
    opacity: 0;
    transition: opacity 260ms ease;
  }
  .mobile-menu-layer.is-open .mobile-menu-backdrop { opacity: 1; }
  .mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 390px);
    height: 100%;
    flex-direction: column;
    padding: 24px 24px 28px;
    background: var(--paper);
    box-shadow: -16px 0 40px rgba(18, 57, 109, 0.18);
    transform: translateX(102%);
    transition: transform 340ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }
  .mobile-menu-layer.is-open .mobile-drawer { transform: translateX(0); }
  .mobile-drawer-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-drawer-head::after {
    position: absolute;
    top: 1px;
    left: 98px;
    color: var(--yellow);
    content: "✦";
    font-size: 17px;
    pointer-events: none;
    animation: sparkle-pop 2.9s ease-in-out -0.65s infinite;
  }
  .drawer-logo {
    width: 104px;
    height: 68px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(20%) sepia(38%) saturate(2029%) hue-rotate(177deg) brightness(89%) contrast(93%);
  }
  .mobile-menu-close { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 25px; }
  .mobile-nav { display: flex !important; flex-direction: column; gap: 0; padding: 24px 0; }
  .mobile-nav a { display: flex; align-items: baseline; gap: 15px; padding: 15px 2px; font-family: "Fraunces", Georgia, serif; font-size: 27px; font-weight: 500; }
  .mobile-nav a::after { display: none; }
  .mobile-nav a span { width: 20px; color: var(--rose); font-family: "Be Vietnam Pro", sans-serif; font-size: 8px; font-weight: 800; }
  .mobile-socials { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
  .mobile-socials a { display: flex; justify-content: space-between; gap: 14px; font-size: 10px; font-weight: 800; }
  .mobile-socials a span { color: var(--ink-soft); font-weight: 500; }
  .mobile-drawer-note { margin: auto 0 0; color: var(--ink-soft); font-family: "Patrick Hand", cursive; font-size: 18px; transform: rotate(-2deg); }
  .mobile-drawer-note span {
    display: inline-block;
    color: var(--yellow);
    filter: drop-shadow(0 0 6px rgba(242, 206, 103, 0.7));
    animation: sparkle-pop 2.8s ease-in-out -1.05s infinite;
  }
  body.menu-open { overflow: hidden; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 580px; }
  .hero-art { min-height: 650px; border-top: 1px solid var(--line); border-left: 0; }
  .crop-vase { width: 45vw; }
  .crop-moon { width: 34vw; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 16px; }
  .handmade-order { grid-template-columns: 1fr; gap: 50px; }
  .order-intro { position: static; }
  .order-notes { grid-template-columns: repeat(2, 1fr); }
  .order-notes article:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .order-notes article:nth-child(4) { border-top: 1px solid var(--line); }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .announcement { gap: 8px; font-size: 8px; letter-spacing: 0.1em; }
  .site-header { min-height: 77px; padding: 0 20px; }
  .brand-logo { width: 92px; height: 58px; }
  .header-socials { gap: 7px; }
  .social-icon-link { width: 34px; height: 34px; }
  .hero-copy { min-height: 500px; padding: 70px 24px; }
  h1 { font-size: 58px; }
  .hero-copy > p { font-size: 16px; }
  .hero-art { min-height: 470px; }
  .crop-vase { left: 8%; width: 58vw; }
  .crop-moon { width: 42vw; }
  .hand-note { right: 4%; font-size: 15px; }
  .manifesto { grid-template-columns: 1fr; padding: 60px 24px; }
  .manifesto p { font-size: 27px; }
  .catalog { padding: 80px 16px 95px; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading h2 { font-size: 43px; }
  .filters { flex-wrap: nowrap; margin-right: -16px; overflow-x: auto; padding-right: 16px; scrollbar-width: none; }
  .filters button { flex: 0 0 auto; }
  .product-grid { gap: 28px 10px; }
  .product-card {
    --tilt: 0deg !important;
    padding: 6px 6px 12px;
    box-shadow: 4px 5px 0 rgba(63, 127, 196, 0.11);
  }
  .product-card:hover,
  .product-card:focus-visible,
  .reveal-item.is-visible.product-card:hover { transform: translateY(-4px); }
  .product-status { top: 7px; left: 7px; padding: 6px 8px; font-size: 8px; }
  .camera-mark { bottom: 7px; left: 7px; transform: rotate(-4deg) scale(0.86); transform-origin: bottom left; }
  .view-label { display: none; }
  .product-info { display: block; padding-top: 11px; }
  .product-info strong { font-size: 15px; }
  .studio-note { grid-template-columns: 1fr; }
  .studio-note > div { padding: 50px 24px; }
  .studio-note > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .handmade-order { gap: 42px; padding: 80px 24px 90px; }
  .order-intro h2 { font-size: 58px; }
  .order-intro > p { font-size: 15px; }
  .order-heading { flex-direction: column; gap: 12px; }
  .order-heading p { text-align: left; }
  .order-steps li { grid-template-columns: 48px 1fr; gap: 14px; padding: 24px 0; }
  .step-number { width: 40px; height: 40px; }
  .order-steps h3 { font-size: 22px; }
  .order-notes { grid-template-columns: 1fr; }
  .order-notes article + article { border-top: 1px solid var(--line); border-left: 0; }
  .order-notes article { padding: 28px 24px 31px; }
  .faq { gap: 35px; padding: 80px 24px 90px; }
  .faq-heading h2 { font-size: 48px; }
  .faq-heading p { font-size: 15px; }
  .faq-list summary { min-height: 78px; font-size: 20px; }
  .faq-answer p { padding-right: 45px; }
  footer { grid-template-columns: 1fr; padding: 75px 24px 40px; }
  .footer-links { align-items: flex-start; }
  .product-modal { grid-template-columns: 1fr; box-shadow: 8px 8px 0 var(--blue); }
  .modal-image { min-height: 330px; }
  .modal-copy { padding: 40px 25px; border-top: 1px solid var(--line); border-left: 0; }
}

@media (hover: none) and (pointer: coarse) {
  .product-card.reveal-item.is-visible .product-image::before {
    animation: product-shine 900ms ease-out calc(var(--reveal-delay, 0ms) + 180ms) 1 both;
  }
  .product-card.reveal-item.is-visible .camera-mark {
    animation: mobile-camera-pop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) calc(var(--reveal-delay, 0ms) + 260ms) 1 both;
  }
  .section-heading.reveal-item h2::after { width: 0; }
  .section-heading.reveal-item.is-visible h2::after {
    animation: mobile-underline-draw 720ms ease-out 180ms 1 both;
  }
}

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