:root {
  --ink: #2a1f24;
  --ink-soft: #5c4a52;
  --paper: #fff7f4;
  --blush: #f3d5d8;
  --rose: #c45b6c;
  --rose-deep: #9e3d4f;
  --mist: #e8dfe4;
  --wash: linear-gradient(160deg, rgba(255, 247, 244, 0.12) 0%, rgba(42, 31, 36, 0.55) 55%, rgba(42, 31, 36, 0.78) 100%);
  --font-display: "Instrument Serif", "Songti SC", serif;
  --font-body: "Zen Kaku Gothic New", "PingFang SC", sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 10% -10%, #ffe8ea 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 20%, #f0e4ef 0%, transparent 50%),
    var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: var(--wash);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: var(--pad);
  padding-bottom: clamp(2.5rem, 8vh, 5rem);
  max-width: 40rem;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.cta-primary {
  background: #fff;
  color: var(--ink);
}

.cta-primary:hover {
  background: var(--blush);
}

.cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.buy .cta-ghost {
  border-color: var(--mist);
  color: var(--ink);
}

.buy .cta-ghost:hover {
  border-color: var(--rose);
  background: rgba(196, 91, 108, 0.08);
}

.buy .cta-primary {
  background: var(--rose);
  color: #fff;
}

.buy .cta-primary:hover {
  background: var(--rose-deep);
}

/* —— Sections —— */
.points,
.gallery,
.buy {
  padding: clamp(3.5rem, 10vh, 6.5rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.points h2,
.gallery h2,
.buy h2 {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.points ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .points ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.points li {
  opacity: 0;
  transform: translateY(1rem);
}

.points li.is-in {
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.points li:nth-child(2).is-in { animation-delay: 0.1s; }
.points li:nth-child(3).is-in { animation-delay: 0.2s; }

.point-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

.points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 36rem;
  }

  .gallery-grid figure:first-child {
    grid-row: 1 / span 2;
  }
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  min-height: 16rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

/* —— Buy —— */
.buy {
  text-align: left;
}

.buy p {
  margin: -0.5rem 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.site-foot {
  padding: 2rem var(--pad) 3rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  opacity: 0.7;
}

.site-foot p {
  margin: 0;
  max-width: var(--max);
  margin-inline: auto;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img,
  .hero-copy,
  .points li,
  .gallery img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
