:root {
  --paper: #fffdf9;
  --milk: #f8f2eb;
  --porcelain: #ffffff;
  --ink: #171514;
  --muted: #726a62;
  --line: #dfd5cb;
  --petal: #ead7ca;
  --petal-deep: #b98577;
  --leaf: #20201f;
  --shadow: 0 24px 80px rgba(55, 43, 32, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(234, 215, 202, 0.42), transparent 28rem),
    linear-gradient(180deg, #fffdfb 0%, #faf5ef 48%, #fffdf9 100%);
  font-family: "Noto Serif JP", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(223, 213, 203, 0.72);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2.4vw, 2rem);
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero {
  min-height: calc(100vh - 4.1rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(18rem, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(23, 21, 20, 0.16);
  background: var(--milk);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
  max-width: 39rem;
}

.eyebrow {
  margin: 0;
  color: var(--petal-deep);
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 8.6rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.lead {
  margin-bottom: 0;
  color: #463f39;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: Inter, "Noto Serif JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: var(--porcelain);
  background: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
}

.intro,
.section,
.journal,
.links-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.intro {
  padding: clamp(2.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p {
  width: min(860px, 100%);
  margin: 0 auto;
  font-size: clamp(1.35rem, 3.4vw, 2.45rem);
  line-height: 1.72;
  text-align: center;
}

.section,
.journal {
  padding: clamp(4rem, 9vw, 7rem) 0 0;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

.product-card {
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.product-visual {
  min-height: 18rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(23, 21, 20, 0.12);
  border-radius: 6px;
  background-color: var(--milk);
  background-position: center;
  background-size: cover;
}

.product-visual.pearls {
  background-image:
    radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.96) 0 13%, transparent 14%),
    radial-gradient(circle at 42% 55%, rgba(248, 227, 217, 0.92) 0 16%, transparent 17%),
    radial-gradient(circle at 54% 58%, rgba(255, 255, 255, 0.86) 0 6%, transparent 7%),
    linear-gradient(135deg, #f9f4ee, #e8d9ce);
}

.product-visual.lace {
  background-image:
    linear-gradient(90deg, rgba(23, 21, 20, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 21, 20, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.98) 0 21%, transparent 22%),
    linear-gradient(135deg, #fffaf5, #eadfd5);
  background-size: 22px 22px, 22px 22px, auto, auto;
}

.product-visual.glass {
  background-image:
    radial-gradient(ellipse at 50% 58%, rgba(255, 255, 255, 0.88) 0 24%, transparent 25%),
    radial-gradient(ellipse at 50% 70%, rgba(185, 133, 119, 0.22) 0 28%, transparent 29%),
    linear-gradient(140deg, #fbf7f2, #ded1c6);
}

.product-type {
  margin-bottom: 0.35rem;
  color: var(--petal-deep);
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card p:not(.product-type) {
  min-height: 4.7rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}

.product-card span {
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journal-grid a {
  display: grid;
  gap: 0.8rem;
  min-height: 14rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.43);
}

.journal-grid span {
  color: var(--petal-deep);
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.journal-grid strong {
  font-size: 1.3rem;
}

.journal-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.links-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.links-copy p:not(.eyebrow) {
  margin-top: 1rem;
  color: #47403a;
  line-height: 2;
}

.social-links {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.social-links a {
  display: grid;
  gap: 0.35rem;
  min-height: 6.25rem;
  padding: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.social-links a:last-child {
  border-bottom: 0;
}

.social-links span {
  color: var(--petal-deep);
  font-family: Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-links strong {
  font-size: 1.18rem;
  line-height: 1.35;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .links-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    order: -1;
  }

  .hero-media img {
    min-height: 17rem;
  }

  .product-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .brand span {
    white-space: normal;
  }

  .nav {
    overflow-x: auto;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
