:root {
  color-scheme: light;
  --ink: #211815;
  --muted: #766c67;
  --line: #ded9d4;
  --paper: #f7f5f2;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page {
  display: grid;
  grid-template-columns: minmax(380px, 1.03fr) minmax(610px, .97fr);
  min-height: 100svh;
}

.photo {
  position: sticky;
  top: 0;
  height: 100svh;
  background:
    linear-gradient(180deg, rgba(30, 22, 18, .04), rgba(30, 22, 18, .12)),
    url("./assets/lil_shinhama_01.jpg") center center / cover no-repeat;
}

.content {
  display: flex;
  align-items: center;
  padding: clamp(36px, 5vw, 76px);
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.95), transparent 34%),
    var(--paper);
}

.content-inner {
  width: min(100%, 700px);
  margin-inline: auto;
}

.logo {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin-bottom: clamp(44px, 6vh, 72px);
}

.notice { margin-bottom: 34px; }

.eyebrow {
  margin: 0 0 12px;
  color: #988c84;
  font-family: "Playfair Display", serif;
  font-size: .78rem;
  letter-spacing: .2em;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.25vw, 1.7rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .045em;
}

.notice > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.9;
}

.shops {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shop {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(10px);
}

.shop-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.shop-number {
  padding-top: 2px;
  color: #a99f98;
  font-family: "Playfair Display", serif;
  font-size: .78rem;
  letter-spacing: .08em;
}

.shop-brand {
  margin: 0 0 3px;
  color: var(--muted);
  font-family: "Playfair Display", serif;
  font-size: .7rem;
  letter-spacing: .12em;
}

h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: .025em;
}

.phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.actions { display: grid; gap: 8px; }

.button {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 500;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.button.primary { color: var(--white); background: var(--ink); }
.button.secondary { background: transparent; }

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button.primary:hover,
.button.primary:focus-visible { background: #443631; }
.button.secondary:hover,
.button.secondary:focus-visible { color: var(--white); background: var(--ink); }
.button:focus-visible,
.phone:focus-visible { outline: 3px solid rgba(33, 24, 21, .26); outline-offset: 3px; }

.copyright {
  margin: 28px 0 0;
  color: #9b918a;
  font-family: "Playfair Display", serif;
  font-size: .7rem;
  letter-spacing: .1em;
}

.sp-only { display: none; }

@media (max-width: 1050px) {
  .page { grid-template-columns: 42% 58%; }
  .content { padding: 38px; }
  .shops { grid-template-columns: 1fr; }
  .logo { max-width: 360px; margin-bottom: 44px; }
}

@media (max-width: 760px) {
  .page { display: block; }
  .photo {
    position: relative;
    height: min(48svh, 430px);
    background-position: 53% center;
  }
  .content {
    display: block;
    padding: 38px 20px 30px;
  }
  .logo {
    width: min(100%, 360px);
    margin: 0 auto 38px;
  }
  .notice { margin-bottom: 28px; text-align: center; }
  h1 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .notice > p:last-child { font-size: .88rem; }
  .shops { gap: 12px; }
  .shop { padding: 22px; }
  .copyright { text-align: center; }
  .sp-only { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
